如何修改作为变量参数列表的一部分传递的指针?

发布于 2024-08-29 06:43:45 字数 462 浏览 2 评论 0原文

我有一个函数,它需要可变数量的指针,我想对其进行修改。它看起来像:

void myPointerModifyingFunction (int num_args, ... ) {
    void *gpu_pointer;
    char mem_type;

    va_list vl;
    va_start(vl,num_args);
    for (int i=0;i<num_args;i++) {
        gpu_pointer=va_arg(vl,void*);
        gpu_pointer = CUT_Malloc(100);
    }
}

CUT_Malloc 函数分配内存(在使用 CUDA 的 GPU 上)并返回地址。但显然我没有正确使用这个地址,因为 gpu_pointer 将在此函数结束时被销毁。 如何修改作为变量参数列表一部分传递的指针?

I have a function which takes a variable number of pointers, which I would like to modify. It looks something like:

void myPointerModifyingFunction (int num_args, ... ) {
    void *gpu_pointer;
    char mem_type;

    va_list vl;
    va_start(vl,num_args);
    for (int i=0;i<num_args;i++) {
        gpu_pointer=va_arg(vl,void*);
        gpu_pointer = CUT_Malloc(100);
    }
}

the CUT_Malloc function allocates memory (On the GPU using CUDA) and returns the address. However clearly I am not using the this address properly as gpu_pointer will be destroyed at the end of this function. How can I modify pointers passed as part of a variable argument list?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

指尖上得阳光 2024-09-05 06:43:45

您传递给函数的指针成为参数值,即存储在函数堆栈(模架构)上,即类似于局部变量。您可能需要双指针,例如 va_arg(vl,void**),并将其称为 myPointerModifyingFunction( 2, &ptr0, &ptr1 );

希望这有帮助。

The pointers you are passing to the function become parameters values, i.e. stored on the function stack (modulo architecture), i.e. are like local variables. You probably want double pointers, something like va_arg(vl,void**), and call it as myPointerModifyingFunction( 2, &ptr0, &ptr1 );.

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文