blob: 5414510376c8720dad60a43bd2868393130bb73b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "debug.h"
#include "sandbox_impl.h"
namespace playground {
int Sandbox::sandbox_gettid() {
Debug::syscall(__NR_gettid, "Executing handler");
return tid();
}
} // namespace
|