1 #ifndef __SYSCALL_TP_H_ 2 #define __SYSCALL_TP_H_ 3 4 #define MAXPN 32 5 struct comm_event{ 6 int pid, n; 7 char argv[MAXPN][32]; 8 }; 9 10 #endif /* __SYSCALL_TP_H_ */ 11