for 循环中的线程

发布于 2024-11-08 17:54:31 字数 788 浏览 0 评论 0原文

我正在用 C 编写一个程序来计算某些网站的访问时间。站点名称存储在 urls 数组的每个元素中。如果我取出 for (y = 0; y < iterations; y++) 循环,那么一切都会正常运行。但如果我保留它的话。 urls[0],第一个网站,在第二个 for 循环完全完成并递增 y 后变得混乱,

是什么原因造成的?

char *urls[50]; char str1[20];

void *wget(void *argument)
{
  int threadid;
  threadid = *((int *)argument);
  strcpy(str1, "wget -q --spider ");
  strcat(str1, urls[threadid]);
  system(str1);
}


for (y = 0; y < iterations; y++)
{
  for (j = 0; j < numthreads; j++)
  {
        thread_args[j] = j;

        clock_gettime(CLOCK_REALTIME, &bgn);
        rc = pthread_create(&threads[j], NULL, wget, (void *) &thread_args[j]);
        rc = pthread_join(threads[j], NULL);
        clock_gettime(CLOCK_REALTIME, &nd);
        times[j] = timediff(bgn,nd);
  }
}

I'm writing a program in C to calculate the access time to certain websites. The sitenames are stored in each element of urls array. If I take out the for (y = 0; y < iterations; y++) loop, then everything runs fine. But if if I keep it. urls[0], the first website, gets messed up after the second for loop completely finishes and increments y

What's causing this?

char *urls[50]; char str1[20];

void *wget(void *argument)
{
  int threadid;
  threadid = *((int *)argument);
  strcpy(str1, "wget -q --spider ");
  strcat(str1, urls[threadid]);
  system(str1);
}


for (y = 0; y < iterations; y++)
{
  for (j = 0; j < numthreads; j++)
  {
        thread_args[j] = j;

        clock_gettime(CLOCK_REALTIME, &bgn);
        rc = pthread_create(&threads[j], NULL, wget, (void *) &thread_args[j]);
        rc = pthread_join(threads[j], NULL);
        clock_gettime(CLOCK_REALTIME, &nd);
        times[j] = timediff(bgn,nd);
  }
}

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

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

发布评论

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

评论(2

动听の歌 2024-11-15 17:54:31

一些可能性...

str1 似乎在所有线程之间共享。这就是麻烦的根源。

str1 只有 20 个字符长。很难相信整个 wget 命令行(包括 URL)将少于 20 个字符。因此,您正在注销 str1 的末尾。

考虑将 str1 设为 wget() 中的局部变量,或者将其设为足够大的 char 数组,以处理您可能遇到的最大的 wget 命令行可能有,或者动态分配它并在 wget() 中释放它,其大小基于命令行常量部分的长度和当前 URL。

Some possibilities...

str1 appears to be shared among all the threads. That's a recipe for trouble right there.

str1 is only 20 chars long. Hard to believe the whole wget command line including the URL will be less than 20 chars. So you're writing off the end of str1.

Consider making str1 a local variable in wget(), and either make it a char array big enough to handle the largest possible wget command line you might have, or dynamically allocate it and free it within wget() with a size based on the length of the constant part of the command line and the current URL.

避讳 2024-11-15 17:54:31

我敢打赌,urls 中的字符串之一 + wget 字符串的长度超过 20 个字节,并且会覆盖该数据。使 str1 更大,并将其移至 wget 函数中(多个线程不应在没有锁定的情况下写入一个共享资源)。

My bet is that one of the strings in urls + the wget string are longer than 20 bytes and are overwriting that data. Make str1 larger, and move it into your wget function (multiple threads should not be writing to one shared resource without locking).

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