1/* Copyright (c) Facebook, Inc. and its affiliates. (http://www.facebook.com) */ 2#pragma once 3 4namespace py { 5 6class Thread; 7 8void profiling_call(Thread* thread); 9 10void profiling_return(Thread* thread); 11 12} // namespace py