- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
请考虑以下代码:
布谷鸟
#include <stdio.h>
#include <assert.h>
#include <pthread.h>
#include <stdlib.h>
void *thread_fn(void *vargp);
int main(int argc, char **argv){
if (argc < 2){
fprintf(stderr, "Meh, error!\n");
return 1;
}
pthread_t span[argc];
for (int i=1; i < argc; i++){
int input = atoi(argv[i]);
printf("input: argv[%d] = %s\n",i, argv[i]);
int rc = pthread_create(&span[i], NULL, thread_fn, &input);
assert (rc == 0);
}
for (int i=1; i < argc; i++){
int *output;
int err = pthread_join(span[i], (void **)&output);
assert (err == 0);
printf("in main: from thread %lu, input = %s, output = %d\n", span[i], argv[i], *output);
free(output);
}
}
void *thread_fn(void *vargp){
int *input = (int *)vargp;
int *output = malloc( sizeof(*output) );
for (int i=0; i <= *input; i++){
*output += i;
}
printf("in thread_fn: %lu, input = %d, output = %d\n", pthread_self(), *input, *output);
pthread_exit(output);
}
当我使用单独的参数运行它时,它表现良好:
$ ./a.out 4
input: argv[1] = 4
in thread_fn: 139691607996160, input = 4, output = 10
in main: from thread 139691607996160, input = 4, output = 10
$ ./a.out 5
input: argv[1] = 5
in thread_fn: 140564160374528, input = 5, output = 15
in main: from thread 140564160374528, input = 5, output = 15
但是,如果传递了多个参数,它就会失败:
$ ./a.out $(seq 1 5)
input: argv[1] = 1
input: argv[2] = 2
in thread_fn: 139922608498432, input = 2, output = 3
input: argv[3] = 3
input: argv[4] = 4
in thread_fn: 139922518308608, input = 4, output = 10
input: argv[5] = 5
in thread_fn: 139922375698176, input = 5, output = 15
in thread_fn: 139922600105728, input = 5, output = 15
in thread_fn: 139922509915904, input = 5, output = 15
in main: from thread 139922608498432, input = 1, output = 3
in main: from thread 139922600105728, input = 2, output = 15
in main: from thread 139922518308608, input = 3, output = 10
in main: from thread 139922375698176, input = 4, output = 15
in main: from thread 139922509915904, input = 5, output = 15
我在这里做错了什么?不推荐这种方法吗?我能够使用如下所示的结构来完成此操作,但我仍然无法使上面的代码段具有类似的功能。我仍然想学习和修复上面粘贴的代码。
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <pthread.h>
void *pappanava(void *vargp);
struct payload{
int input;
int sum;
};
int main(int argc, char **argv){
if (argc < 2){
fprintf(stderr, "Invalid usage\n");
return 1;
}
//struct payload *this = malloc( sizeof(*this) );
pthread_t span[argc];
for (int i=1; i< argc; i++){
printf("i/p: %s\n", argv[i]);
struct payload *this = malloc( sizeof(*this) );
this->input = atoi(argv[i]);
int rc = pthread_create(&span[i], NULL, pappanava, &this->input);
}
for (int i=1; i< argc; i++){
struct payload *this;
pthread_join(span[i], (void**)&this);
printf("In _main_: thread: %lu, input: %d, sum: %d\n", span[i], this->input, this->sum);
free(this);
}
return 0;
}
void *pappanava(void *vargp){
struct payload *this = ( struct payload *) vargp;
int sum = 0;
for (int i=0; i <= this->input; i++){
sum += i;
}
this->sum = sum;
printf("In fn: thread: %lu, input: %d, sum: %d\n", pthread_self(), this->input, this->sum);
pthread_exit(this);
}
最佳答案
查看 compilation result第一个程序的
看起来 int input
在传递给您的线程时使用相同的内存位置,而不是像您期望的那样使用新的内存位置,从而导致 race condition .
解决问题的一种方法是使用 input
的 array
...
pthread_t span[argc];
int input[argc];
for (int i=1; i< argc; i++){
input[i] = atoi(argv[i]);
...
int rc = pthread_create(&span[i], NULL, thread_fn, &input[i]);
...
其他方法是为输入分配内存
...
pthread_t span[argc];
for (int i=1; i< argc; i++){
int *input=malloc(sizeof(int));
*input = atoi(argv[i]);
...
int rc = pthread_create(&span[i], NULL, thread_fn, input);
...
当然,使用此解决方案来避免内存泄漏,您可以将其留给线程过程来释放为 input
分配的内存。
关于c - 不一致的结果和 pthread 混淆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50459057/
我真的很困惑。我已经尝试使用带有 tomcat 的 Jax-rs 并使用所有注释,我能够使用 url 调用我的服务。因此,如果没有 Jax-rs,我可以简单地拥有一个 servlet 并调用我的服务。
是否有任何工具/商业混淆器可以混淆 WPF 控件中的 BAML 资源? 如果没有,就 IP 保护而言,这是一段艰难的时期,因为黑客可以通过使用 BAML 到 XAML 转换器轻松查看 BAML 资源。
嘿大家。我在尝试使用 COBOL 在 zOS 环境中解决的编码项目中遇到了一些麻烦。我需要读入一个文件并将它们放入索引表中(我知道将少于 90 条记录)。 让我感到困扰的是,我们受到项目参数的约束,以
我试图按照这个例子来理解 join() 方法: class PrintDemo { public void printCount() { try { for(int
当我编译我正在编写的代码,然后在 JD Gui 中查看时,方法显示带有如下标题: public void growSurface(Random paramRandom, int paramInt1,
我正在为重新分发准备 Android 库,它的代码必须进行混淆处理。我已经阅读了有关此主题的一些内容,并且决定使用 Android Library Project。它将作为 jar 分发(自动在/bi
两个混淆相关的问题: 1) 是否有任何工具可以将 F# 从 MSIL 目标形式反汇编回其源形式或接近它的形式?这不是通过默默无闻来实现安全性的尝试,但我想保护某些源代码免遭“盗窃”。 2) 我简要地查
谁能向我解释为什么 simulatedCase <- rbinom(100,1,0.5) simDf <- data.frame(CASE = simulatedCase) posterior_m0
我一直无法找到关于使用 AppDomains 时发生的事情的非常清楚的描述,所以希望有人能够启发我。我有一个简单的测试程序(基本上是扯掉了 MSDN example ): using System;
假设我有 2 个分支topic和 master如果我在 topic分支,然后运行 git rebase master它是 rebase master 还是 rebase 主题分支? 做 git r
我有一个类(class): public class LockTest { public void LockThis() { lock (this)
我正在尝试最小化/混淆我的 Angular 代码,但遇到了问题。我在这里阅读“缩小说明”http://docs.angularjs.org/tutorial/step_05但我定义我的 Control
我遇到了一些困惑的操作。 var a = 0.1; var b = 0.2; var c = 0.3; console.log(a); // 0.1 console.log(b); // 0.2 co
感谢您查看我的帖子 - 我正在尝试弄清楚如何在单击链接时关闭此下拉菜单,但我的 JavaScript 技能非常缺乏,而且代码似乎很困惑。这是 HTML:
混淆、哈希和加密之间有什么区别? 这是我的理解: 哈希是一种单向算法;无法逆转 混淆与加密类似,但不需要任何“ secret ”即可理解(ROT13 就是一个例子) 加密是可逆的,但需要“ secre
我有以下代码 my $content = $response->content; $content =~ /username=([\s\S]+?)&/; my $username = $1; prin
我在 .NET 中发现了一些与我预期的有点不同的东西。我粘贴的代码没有意义,但它是我拥有的一个复杂得多的函数的浓缩版。我实际上是在获取匿名类型信息作为参数(尚未创建匿名类型的实例),我需要创建该类型的
我正在努力解决 JavaFX 应用程序的混淆问题。使用此项目作为基础: https://github.com/openjfx/samples/tree/master/IDE/IntelliJ/Non-
是否可以制作一个与此类似的 CSV 阅读器 while((line = reader.readLine()) != null){ String[] values = line.
公共(public)类测试2 { 公共(public)静态无效主(字符串[]参数){ System.out.println("3 + 6"); System.out.println(3
我是一名优秀的程序员,十分优秀!