| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- /*
- * thread.c -- handles:
- *
- * threads
- */
- #include <pthread.h>
- #include <stdio.h>
- #include <sys/ptrace.h>
- #include <sys/wait.h>
- #include <sys/types.h>
- #include <errno.h>
- static pthread_mutex_t my_lock = PTHREAD_MUTEX_INITIALIZER;
- void *
- thread_main(void *arg)
- {
- int pid = (int) arg;
- printf("THREADED! MY PARENT: %d\n", pid);
- printf("my pid: %d\n", getpid());
- ptrace(PTRACE_ATTACH, pid, 0, 0);
- while (1) {
- int i = 0;
- waitpid(pid, &i, 0);
- if (WSTOPSIG(i)) {
- ptrace(PTRACE_CONT, pid, (char *) 1, WSTOPSIG(i));
- printf("pid was signaled! %d\n", WSTOPSIG(i));
- // kill(pid, WSTOPSIG(i));
- } else
- ptrace(PTRACE_CONT, pid, (char *) 1, 0);
- }
- //kill(pid, SIGCHLD);
- //kill(pid, SIGCONT);
- while (1)
- sleep(1);
- // pthread_mutex_unlock(&my_lock);
- // pthread_mutex_destroy(&my_lock);
- pthread_exit(0);
- printf("WTF\n");
- }
- void init_thread(int pid) {
- printf("init_thread called from %d\n", pid);
- // pthread_mutex_lock(&my_lock); /* to allow only one ftp thread at a time */
- pthread_t thread;
- pthread_attr_t thread_attr;
- pthread_attr_init(&thread_attr);
- pthread_attr_setdetachstate(&thread_attr, PTHREAD_CREATE_DETACHED);
- pthread_attr_setstacksize(&thread_attr, 65536);
- pthread_create(&thread, &thread_attr, &thread_main, (void *) pid);
- }
|