linux系统调用

                                                     系统调用的函数api头文件

                                                      kernel\include\uapi\asm-generic

 

#include <unistd.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>



int main(int argc, char  *argv[])
{

   pid_t tid;
   
   tid = syscall(SYS_gettid);
   
   printf("tid : %d\n",tid);
   
   tid = syscall(SYS_tgkill, getpid(), tid, SIGHUP);
   
   printf("tid : %d,,,\n",tid);
    
    


    while (1);
}

                                                     

 

posted @ 2020-04-05 17:02  卷哭你  阅读(162)  评论(0编辑  收藏  举报