toaruos/userspace/lib/pthread.c
2014-04-21 19:46:38 -07:00

37 lines
843 B
C

#include <stdlib.h>
#include <stdint.h>
#include <syscall.h>
#include <signal.h>
#include "pthread.h"
#define PTHREAD_STACK_SIZE 0x100000
int clone(uintptr_t a,uintptr_t b,void* c) {
return syscall_clone(a,b,c);
}
int gettid() {
return syscall_gettid();
}
int pthread_create(pthread_t * thread, pthread_attr_t * attr, void *(*start_routine)(void *), void * arg) {
char * stack = malloc(PTHREAD_STACK_SIZE);
uintptr_t stack_top = (uintptr_t)stack + PTHREAD_STACK_SIZE;
thread->stack = stack;
thread->id = clone(stack_top, (uintptr_t)start_routine, arg);
return 0;
}
int pthread_kill(pthread_t thread, int sig) {
return kill(thread.id, sig);
}
void pthread_exit(void * value) {
/* Perform nice cleanup */
#if 0
/* XXX: LOCK */
free(stack);
/* XXX: Return value!? */
#endif
__asm__ ("jmp 0xFFFFB00F"); /* Force thread exit */
}