5

是否可以将指针转换为无符号整数,然后再将其转换回指针?我试图将指向结构的指针存储在 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);
}
4

2 回答 2

5

不。在许多系统上,指针类型大于 int 类型。如果您在使用 pthread_t 时遇到问题,请询问它,int 不是答案。

例如,在我的机器上,以下代码:

#include <stdio.h>

int main() {
        printf("unsigned int = %lu\n", sizeof(unsigned int));
        printf("pointer = %lu\n", sizeof(void*));
        return 0;
}

输出:

unsigned int = 4
pointer = 8
于 2012-04-29T00:48:51.463 回答
4

当然,如果您确保 unsigned int 与系统上的 void* 大小相同,那么这是可能的。

如果您有一些不起作用的代码,请将其发布。

编辑:你应该阅读关于intptr_t,例如在这里:为什么/何时使用`intptr_t`在C中进行类型转换?

于 2012-04-29T00:43:04.600 回答