- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
所以我遇到了 pthread join 的问题,它会给我段错误或永远在那里等待。我在这里尝试做的是一个 pthreaded TCP 客户端服务器,其中 pthread 在客户端。我注释掉了除仍然无效的连接之外的所有内容。
问题主要出在 pthreads 上,它将在 pthread_join 上停止并且永远不会继续。以下是当我尝试建立 4 个连接时,连接成功,通过不执行任何操作的 pthread。
调试测试运行:
./test 128.114.104.230 4443 5
begins
on top of forloop
forloop #0
forloop top of strcat #0
forloop top of create #0
forloop End #0
in thread, top of write #0
in thread, write errored #0
forloop #1
forloop top of strcat #1
forloop top of create #1
forloop End #1
in thread, top of write #1
in thread, write errored #1
forloop #2
forloop top of strcat #2
forloop top of create #2
forloop End #2
in thread, top of write #2
in thread, write errored #2
forloop #3
forloop top of strcat #3
forloop top of create #3
forloop End #3
in thread, top of write #3
in thread, write errored #3
forloop #4
forloop top of strcat #4
forloop top of create #4
forloop End #4
I am here2
start wait #0
in thread, top of write #4
in thread, write errored #4
代码:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h> //Socket data types
#include <sys/socket.h> //socket(), connect(), send(), and recv()
#include <netinet/in.h> //IP Socket data types
#include <arpa/inet.h> //for sockaddr_in and inet_addr()
struct thread_info{ /* Used as argument to thread_start() */
pthread_t thread_id; /* ID returned by pthread_create() */
int thread_num; /* Application-defined thread # */
int sockfd;
char * stringArg;
};
static void * thread_start(void *arg){
struct thread_info *threadInfo = arg;
char *recvBuff;
//char *sendBuff = "This is thread #";
//char *Temp = &(*threadInfo->thread_num +'0');
//strcat(sendBuff, Temp);
//strcat(sendBuff, "\n");
printf("in thread, top of write #%d\n", threadInfo->thread_num);
//if(write(threadInfo->sockfd, threadInfo->stringArg, strlen(threadInfo->stringArg)) != strlen(threadInfo->stringArg));
printf("in thread, write errored #%d\n", threadInfo->thread_num);
//read(threadInfo->sockfd, recvBuff, 1024);
close(threadInfo->sockfd);
pthread_exit((void*) arg);
}
int main(int argc, char* argv[]){
printf("begins\n");
struct sockaddr_in servAddr;
pthread_attr_t attr;
int numCon = atoi(argv[3]);
int serNum;
struct thread_info *pThreads;
int s;
int end;
pThreads = calloc(numCon, sizeof(struct thread_info));
if (pThreads== NULL){
fprintf(stderr, "Error : Could not memory for thread_info Structure\n");
return EXIT_FAILURE;
}
servAddr.sin_family = AF_INET;
servAddr.sin_port = htons(atoi(argv[2]));
servAddr.sin_addr.s_addr = inet_addr(argv[1]);
printf("on top of forloop\n");
//reads and stores all IP and Port in the list of servers for later use
for(serNum = 0; serNum< numCon; serNum++){
if((pThreads[serNum].sockfd = socket(AF_INET, SOCK_STREAM,0))< 0){
fprintf(stderr, "Error : Could not create socket #%d \n", serNum);
return EXIT_FAILURE;
}
if(connect(pThreads[serNum].sockfd, (struct sockaddr *)&servAddr, sizeof(servAddr))< 0){
fprintf(stderr, "Error : Connect to socket #%d Failed \n", serNum);
return EXIT_FAILURE;
}
printf("forloop #%d\n", serNum);
pThreads[serNum].thread_num = serNum;
pThreads[serNum].stringArg = "I am thread ";
printf("forloop top of strcat #%d\n", serNum);
//strcat(pThreads[serNum].stringArg, &pThreads[serNum].thread_num);
printf("forloop top of create #%d\n", serNum);
s = pthread_create(&pThreads[serNum].thread_id, NULL, thread_start, &pThreads[serNum]);
printf("forloop End #%d\n", serNum);
}
printf("I am here2\n");
for(serNum = 0; serNum< numCon; serNum++){
printf("start wait #%d\n",serNum);
pthread_join(&pThreads[serNum].thread_id, (void **) &end);
printf("end wait #%d\n",serNum);
}
printf("Main: program completed. Exiting.\n");
free(pThreads);
pthread_exit(NULL);
return 0;
}
最佳答案
看pthread_join(3)
的签名:
int pthread_join(pthread_t thread, void **retval);
但是您向它传递了一个指向 pthread_t
的指针。
您应该考虑使用更高的警告选项进行编译,例如 -Werror -Wall -pedantic
。
关于c - pthread_join() 导致段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23317395/
我正在尝试使用 Spark 从 Cassandra 读取数据。 DataFrame rdf = sqlContext.read().option("keyspace", "readypulse
这是代码: void i_log_ (int error, const char * file, int line, const char * fmt, ...) { /* Get erro
我必须调试一个严重依赖 Gtk 的程序。问题是由于某些原因,在使用 GtkWindow 对象时开始出现许多运行时警告。问题是,即使 Gtk 提示严重错误,它也不会因这些错误而中止。我没有代码库的更改历
我正在尝试从已有效编译和链接的程序中检索二进制文件。我已经通过 GL_PROGRAM_BINARY_LENGTH 收到了它的长度。该文档说有两个实例可能会发生 GL_INVALID_OPERATION
我有一个托管在 Azure 环境中的服务。我正在使用控制台应用程序使用该服务。这样做时,我得到了异常: "The requested service, 'http://xxxx-d.yyyy.be/S
我有以下代码,它被 SEGV 信号杀死。使用调试器表明它被 main() 中的第一个 sem_init() 杀死。如果我注释掉第一个 sem_init() ,第二个会导致同样的问题。我试图弄清楚是什么
目前我正在编写一个应用程序(目标 iOS 6,启用 ARC),它使用 JSON 进行数据传输,使用核心数据进行持久存储。 JSON 数据由 PHP 脚本通过 json_encode 从 MySQL 数
我对 Xamarin.Forms 还是很陌生。我在出现的主页上有一个非常简单的功能 async public Task BaseAppearing() { if (UserID
这是我的代码的简化版本。 public class MainActivity extends ActionBarActivity { private ArrayList entry = new Arr
我想弄明白为什么我的两个 Java 库很难很好地协同工作。这是场景: 库 1 有一个类 A,其构造函数如下: public A(Object obj) { /* boilerplate */ } 在以
如果网站不需要身份验证,我的代码可以正常工作,如果需要,则在打印“已创建凭据”后会立即出现 EXC_BAD_ACCESS 错误。我不会发布任何内容,并且此代码是直接从文档中复制的 - 知道出了什么问题
我在使用 NSArray 填充 UITableView 时遇到问题。我确信我正在做一些愚蠢的事情,但我无法弄清楚。当我尝试进行简单的计数时,我得到了 EXC_BAD_ACCESS,我知道这是因为我试图
我在 UITableViewCell 上有一个 UITextField,在另一个单元格上有一个按钮。 我单击 UITextField(出现键盘)。 UITextField 调用了以下方法: - (BO
我有一个应用程序出现间歇性崩溃。崩溃日志显示了一个堆栈跟踪,这对我来说很难破译,因此希望其他人看到了这一点并能为我指出正确的方向。 基本上,应用程序在启动时执行反向地理编码请求,以在标签中显示用户的位
我开发了一个 CGImage,当程序使用以下命令将其显示在屏幕上时它工作正常: [output_view.layer performSelectorOnMainThread:@selector(set
我正在使用新的 EncryptedSharedPreferences以谷歌推荐的方式上课: private fun securePrefs(context: Context): SharedPrefe
我有一个中继器,里面有一些控件,其中一个是文本框。我正在尝试使用 jquery 获取文本框,我的代码如下所示: $("#").click(function (event) {}); 但我总是得到 nu
在以下场景中观察到 TTS 初始化错误,太随机了。 已安装 TTS 引擎,存在语音集,并且可以从辅助功能选项中播放示例 tts。 TTS 初始化在之前初始化和播放的同一设备上随机失败。 在不同的设备(
maven pom.xml org.openjdk.jol jol-core 0.10 Java 类: public class MyObjectData { pr
在不担心冲突的情况下,可以使用 MD5 作为哈希值,字符串长度最多为多少? 这可能是通过为特定字符集中的每个可能的字符串生成 MD5 哈希来计算的,长度不断增加,直到哈希第二次出现(冲突)。没有冲突的
我是一名优秀的程序员,十分优秀!