我想知道如果两个线程同时调用同一个函数并且该函数是一个通过套接字发送文本的 UDP 客户端会发生什么。
考虑到下面的代码,我一直在运行它,但还没有出现任何错误。我想知道它是否应该因为线程同时使用相同的源(函数、变量、IP、端口)而崩溃,它们如何共享源?我可以想象下面的代码是多线程的错误用法,你能解释一下应该如何使用线程,以便一个线程只使用没有其他线程使用的函数吗?换句话说,它怎么可能是线程安全的?
作为 Linux 上的示例 C 代码:
void *thread1_fcn();
void *thread2_fcn();
void msg_send(char *message);
int main(void){
pthread_t thread1, thread2;
pthread_create( &thread1, NULL, thread1_fcn, NULL);
pthread_create( &thread2, NULL, thread2_fcn, NULL);
while(1){}
return 0;
}
void *thread1_fcn(){
while(1){
msg_send("hello");
usleep(500);
}
pthread_exit(NULL);
}
void *thread2_fcn(){
while(1){
msg_send("world");
usleep(500);
}
pthread_exit(NULL);
}
void msg_send(char message[]){
struct sockaddr_in si_other;
int s=0;
char SRV_IP[16] = "192.168.000.002";
s = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
memset((char *) &si_other, 0, sizeof(si_other));
si_other.sin_family = AF_INET;
si_other.sin_port = htons(12346);
si_other.sin_addr.s_addr = htonl(INADDR_ANY);
inet_aton(SRV_IP, &si_other.sin_addr);
sendto(s, message, 1000, 0, &si_other, sizeof(si_other));
close(s);
}