toaruos/userspace/lib/pthread.c
Kevin Lange cea692b577 And now with more login.
* Also cleaning up some kernel logging options here.
* You can log in as local or root with passwords local and toor
* Graphical sessions are still buggy, so don't kill that terminal.
2012-09-12 23:19:07 -07:00

32 lines
741 B
C

#include <stdlib.h>
#include <stdint.h>
#include <syscall.h>
#include "pthread.h"
#define PTHREAD_STACK_SIZE 10240
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;
}
void pthread_exit(void * value) {
/* Perform nice cleanup */
#if 0
/* XXX: LOCK */
free(stack);
/* XXX: Return value!? */
#endif
__asm__ ("jmp 0xFFFFB00F"); /* Force thread exit */
}