- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试创建 n 个线程,将整数标识符作为参数传递。我的问题是,当我从线程中读取该标识符时,会显示一些奇怪的东西。这是我的代码(简化)
th_clientes = malloc(sizeof(int) * n_clientes);
arg_clientes = malloc(sizeof(int) * n_clientes);
t_espera = malloc(sizeof(int) * n_clientes);
// Create the pthread
for (cont = 0; cont < n_clientes; ++cont) {
arg_clientes[cont] = cont;
pthread_create(&th_clientes[cont],NULL,clientes, &arg_clientes[cont]);
}
// Waiting for them.
for (cont = 0; cont < n_clientes; ++cont) {
pthread_join(th_clientes[cont],NULL);
}
void *clientes(void *arg){
int id = *(int *)arg;
printf("Cliente %d realizando compra.\n",id);
t_espera[id] = rand() % MAX;
sleep(t_espera[id]);
printf("Cliente %d saliendo del despues de espera %d.\n",id, t_espera[id]);
}
这是我输出的一部分。
Cliente 90 realizando compra.
Cliente 91 realizando compra.
Cliente 92 realizando compra.
Cliente 93 realizando compra.
Cliente 94 realizando compra.
Cliente 15 realizando compra.
Cliente 32551 realizando compra.
Cliente -189507840 realizando compra.
Cliente 32551 realizando compra.
Cliente 32551 saliendo del despues de espera 0.
Violación de segmento (`core' generado)
谢谢。
最佳答案
您可能没有为您的 pthread_t
数组分配足够的内存。变化:
th_clientes = malloc(sizeof(int) * n_clientes);
到:
th_clientes = malloc(sizeof(pthread_t) * n_clientes);
关于c - C 中的 Pthread arg,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28482469/
我有这个代码。为了让它工作,我必须使用 Args&&... 而不是 Args... 或 Args&... 我注意到 args 从 & 转换为 const& 或 && 转换为 &。 Args...Arg
当我定义类时,我总是去 Class A(object): def __init__(self, arg): self.arg = arg def print_arg(s
假设我想定义两个 {Type} 类的变量。构造函数采用 1 个参数。下面两种方式是否完全等价(编译成相同的目标代码)? Type a(arg), b(arg); 和 Type a(arg); Type
(旁白:我是一名 Perl 程序员,正如您所知,这是我的第一个重要的 Java 程序。简单的术语将不胜感激。) 我有以下启动器作为编码工作: import java.lang.reflect.*; i
Math.nextUp(arg) 始终与 arg + Math.ulp(arg) 相同,还是我遗漏了什么? System.out.println( 0.5 + Math.ulp(0.5));
今天我在学习完美转发,我创建了这个代码示例 #include #include template auto toStdFun(Function&& fun, Args&&...ar
我想知道你会选择哪个选项? putStrLn (show randomNum) putStrLn $ show randomNum (putStrLn . show) randomNum 所有选项在语
我试图在 visual studio 2012 中编译一个库,它最初是用 c++ 为 visual studio 2015 编写的。我有一个错误说 'class' missing tag。 错误消息的
我在下面的代码中遇到了运行时异常ArrayIndexOutOfBoundException,行中: if ( args[0].equals("t") || args[0].equals("time")
我有以下代码 import React, { Component } from "react"; import { Accounts } from "meteor/accounts-base"; ex
这个问题已经有答案了: Difference between Arrays and 3 dots (Varargs) in java (3 个回答) 已关闭 5 年前。 受学校线性代数 I 和 II
所以我定义了一个函数: def getDistnace(self, strings, parentD, nodeName, nodeDistance): 我用它来调用: Node.getDistnac
这个问题在这里已经有了答案: subprocess.call() arguments ignored when using shell=True w/ list [duplicate] (2 个答案
我想将参数传递给 java 应用程序,但喜欢 linux 应用程序风格。 java 中的main 方法对所有参数使用一个String 数组。在 Linux 中,大多数应用程序接受如下参数:ls -l
这是我的代码片段 #include void change(int a[]){ printf("%p\n",&a); } int main(){
我需要使用 python 3.6 subprocess.run() 函数发出以下命令: gsettings set org.gnome.shell enabled-extensions "['appl
这两个函数是否有任何有意义的不同?有什么理由通常更喜欢一个而不是另一个吗? void foo(auto x, auto &... y) { /* ... */ } template void foo(
例如: def m(arg, ...args) { println "arg: $arg" println "args: $args" } m('arg', k:'v') 输出: ar
我对 Java 还很陌生。目前正在尝试将 args[] 中给出的文件名传递给此 FileReader,但当我编译时,它说找不到指定的文件。如果我对文件名进行硬编码,它就可以正常工作。这应该如何运作?
为什么这是一个语法错误??做这件事的合适方法是什么? >>> def f(*args, option=None): File "", line 1 def f(*args, option=
我是一名优秀的程序员,十分优秀!