- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
好吧,我已经定义了 2 个互斥体:bar_mutex(在 N 个 bar 线程之间使用)和 writer_mutex(在 bar 线程和观察者线程中使用)。编写器互斥体用于避免变量 k_total 的奇怪值,我正在修改一个全局变量,但在某些特定时刻该变量变为 0.0,而另一个线程将其与该值一起使用。 为了避免这种情况,我添加了 writer_mutex 但问题仍然存在。我究竟做错了什么?我将粘贴代码的重要部分。
if (k_total < 1 && b->cm <=20) {
b->cm = b->cm + 10; //Usando este valor calculamos el deltak
/* printf("\nThread yendo hacia abajo\n"); */
if (b->direction == UP) {
b->direction = DOWN;
changed_direction = true;
} else {
changed_direction = false;
}
} else if(k_total > 1 && b->cm >=-20) {
b->cm = b->cm - 10; //Usando este valor calculamos el deltak
/* printf("\nThread yendo hacia arriba\n"); */
if (b->direction == DOWN) {
b->direction = UP;
changed_direction = true;
} else {
changed_direction = false;
}
}
In this part of the function move_bar k_total is taken as 0 instead of the correct value... In order to avoid this I added the writer_mutex but it is still not working
Here you can see the global variable ktotal is being sent as 0 in some point... I am trying to avoid this.
我将附加代码的主要部分。
void
start_threads(struct bar* bars) {
int i;
pthread_t threads[NUM_THREADS + 1];
bars = (struct bar*)malloc(sizeof(struct bar) * NUM_THREADS);
init_variables();
pthread_mutex_init(&bar_mutex, NULL);
pthread_mutex_init(&write_mutex, NULL);
pthread_cond_init(&unstable_state, NULL);
for (i = 1; i < NUM_THREADS + 1; i++) {
fill_bar(&bars[i - 1], i);
}
pthread_attr_init(&attr);
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
// creating the 4 threads that handle each bar
for (i = 0; i < NUM_THREADS; i++) {
pthread_create(&threads[i], &attr, move_bar, (void *)&bars[i]);
}
//thread used to check if system is stable and change its k_total
pthread_create(&threads[NUM_THREADS], &attr, check_stable, (void*)bars);
/* Wait for all threads to complete */
for (i=0; i<NUM_THREADS + 1; i++) {
pthread_join(threads[i], NULL);
}
}
void*
check_stable(void* bars) {
struct bar* wires = (struct bar*) bars ;
while (true) {
pthread_mutex_lock(&write_mutex);
k_total = 0.0;
for (int i = 0; i < NUM_THREADS; ++i) {
k_total += getDeltaKValue(wires[i].cm);
}
char str[25];
sprintf(str,"deltak=%lf", k_total);
doPost("deltak",str);
k_total = k_value + k_total;
sprintf(str,"kparcial=%lf",k_value);
doPost("kparcial",str);
sprintf(str,"ktotal=%lf", k_total);
doPost("ktotal",str);
if ((double)k_total != (double)1.0) {
unbalanced = true;
pthread_cond_signal(&unstable_state);
} else {
unbalanced = false;
}
pthread_mutex_unlock(&write_mutex);
sleep(1);
}
}
void*
move_bar(void *bar) {
struct bar* b = (struct bar*) bar;
clock_t start = clock();
bool changed_direction = false;
while (true) {
pthread_mutex_lock(&bar_mutex);
while (unbalanced == false)
pthread_cond_wait(&unstable_state, &bar_mutex);
pthread_mutex_lock(&write_mutex);
if (k_total < 1 && b->cm <=20) {
b->cm = b->cm + 10; //Usando este valor calculamos el deltak
/* printf("\nThread yendo hacia abajo\n"); */
if(b->direction == UP) {
b->direction = DOWN;
changed_direction = true;
} else {
changed_direction = false;
}
} else if (k_total > 1 && b->cm >=-20) {
b->cm = b->cm - 10; //Usando este valor calculamos el deltak
/* printf("\nThread yendo hacia arriba\n"); */
if(b->direction == DOWN) {
b->direction = UP;
changed_direction = true;
} else {
changed_direction = false;
}
}
k_total = 0.0;
for (int i = 0; i < NUM_THREADS; ++i) {
k_total += getDeltaKValue(bars[i].cm);
}
char str[25];
if ((double)k_total != (double)1.0) {
unbalanced = true;
} else {
printf("\nBALANCED");
unbalanced = false;
}
pthread_mutex_unlock(&write_mutex);
if (changed_direction) {
sleep(CHANGE_DIRECTION);
}
sleep(MOVEMENT_TIME);
sprintf(str,"id=%ld&cm=%d",b->id, b->cm);
doPost("barValue",str);
/* printf("\nEnding thread %ld", b->id); */
changed_direction = false;
pthread_mutex_unlock(&bar_mutex);
sleep(1);
}
pthread_exit(NULL);
}
最佳答案
好吧,伙计们,问题不在这里。该代码确实有效。使用 gdb,我看到有 2 个全局变量 bars 具有相同的名称,但具有不同的引用,因为我正在为同一个变量执行 2 个 malloc,并且我一直在更新机器人的 2 个不同函数中使用该变量结构而不只是 1...我刚刚删除了意外的 malloc,一切正常。
关于c - pthread 互斥体中的意外行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45857257/
程序集,masm 嘿,我写了宏来打印存储在 dane1 段中的 1 字节值。 我将值除以 16,然后将提醒推送到堆栈,直到值==0。然后我弹出提醒将它们转换为 ASCII 码,并打印它们。 有人可以看
我在 Apache Geronimo 2.1.3 上有一个 Web 服务应用程序。 我正在使用 JAX-WS,使用 SOAP 1.1 注释 POJOS。 (使用 Sun JDK 1.5) 各种客户端都
我有一个数据变量,monthArray,它被多个消费者读取,并由单个定期更新程序线程定期更新数据。全部异步。 我已经考虑了这两个选项来安全地执行更新。 ArrayList tempArray
我有一组 3D 体。每个 Body 由 8 个点定义,每个点具有三个坐标。所有的物体都是立方体的或近似立方体的。我想用系统的点栅格“填充”立方体。坐标存储在简单的 data.frames 中。 我开发
我正在处理遗留代码,需要打补丁。 问题:一个古老的应用程序发送错误的 HTTP POST 请求。其中一个参数未经过 URL 编码。我知道这个参数总是排在最后而且我知道它的名字。我现在正尝试在运行在 t
我想在触摸屏幕时移动 sprite body ,但它不能发生...... -(void)ccTouchEnded:(UITouch *)touch withEvent:(UIEvent *)event
这个问题在这里已经有了答案: Can a union be initialized in the declaration? (3 个答案) 关闭 7 年前。 如果它是一个struct那么它就可以完成
我正在尝试获取生成 sigsys 信号的系统调用的地址!但我从 gcc 收到以下错误: gcc emulator.c -fms-extensions error: ‘siginfo_t’ has no
当我使用 Postman 进行 API 调用时,我收到一个 JSON 对象..这是我所期望的。 但是,当我像这样与 Guzzle 进行相同的调用时: $client = new \GuzzleHttp
在编码时,出现了差异。通常在编写简单的方法或构造函数时,我经常使用表达式体技术。但是,当我产生以下内容时: public class Sample : ISample { private r
我正在使用 LibGDX 创建一个新项目。 我想做的是,我将 tmx 文件中的主体加载到工作正常的关卡中。尸体也有一个 Sprite 。 问题是,我想让用户触摸场景中的某些 body 。当他们触摸 b
我的意图:在不使用 union 的情况下循环遍历一个结构的 30 个成员,所有成员都是字符数组类型,每个成员都存储对 itoa 的调用结果。在下面的代码中,我将结构体成员命名为a-z、A-D。在调用函
我必须将我的代码段之一从 C 转换为 java。代码如下。 union commandString{ char commndStr[20]; struct{ char
#include union NumericType { float value; int intvalue; }Values; int main() { Values.va
我在此代码中收到错误: fun num(num:Int):Int { if (num > 0){ print(num % 10) return num / 10
我是一名优秀的程序员,十分优秀!