Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 #ifndef __TRACE_COMMON_H
0003 #define __TRACE_COMMON_H
0004 
0005 #ifdef __x86_64__
0006 #define SYSCALL(SYS) "__x64_" __stringify(SYS)
0007 #elif defined(__s390x__)
0008 #define SYSCALL(SYS) "__s390x_" __stringify(SYS)
0009 #else
0010 #define SYSCALL(SYS)  __stringify(SYS)
0011 #endif
0012 
0013 #endif