是否可以将指针转换为无符号整数,然后再将其转换回指针?我试图将指向结构的指针存储在 pthread_t 变量中,但我似乎无法让它工作。这是我的一些代码片段(我正在创建一个用户级线程管理库)。当我尝试打印线程的 tid 时,它给了我一些很长的垃圾号。
编辑:没关系,我让它工作了。
我变了
thread = (pthread_t) currentThread;
到
*thread = (pthread_t) currentThread;
以为是这样的蠢事。
测试程序:
pthread_t thread1;
pthread_t thread2;
pthread_create(&thread1, NULL, runner, NULL);
pthread_create(&thread2, NULL, runner, NULL);
pthread_join(&thread2, NULL);
我的图书馆:
typedef struct queueItem
{
int tid;
ucontext_t context;
int caller;
struct queueItem *joiningOn;
struct queueItem *nextContext;
} queueItem;
int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine) (void *), void *arg)
{
thread = (pthread_t) currentThread;
}
...
int pthread_join(pthread_t thread, void **retval)
{
queueItem *t = (queueItem *) thread;
if(runningContext->joiningOn != NULL) // Current thread is already waiting on another
return EINVAL;
if(t == NULL) // If thread to join on is invalid
return 0;
fprintf(stdout, "JOINEE: %d\n", t->tid); // Prints weird number
runningContext->caller = JOIN;
runningContext->joiningOn = t;
swapcontext(&(runningContext->context), &scheduleContext);
}