如何修改作为变量参数列表的一部分传递的指针?
我有一个函数,它需要可变数量的指针,我想对其进行修改。它看起来像:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您传递给函数的指针成为参数值,即存储在函数堆栈(模架构)上,即类似于局部变量。您可能需要双指针,例如
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 asmyPointerModifyingFunction( 2, &ptr0, &ptr1 );
.Hope this helps.