开发平台(Platform): (Ex: VC++, GCC, Linux, ...)
Linux C
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
问题(Question):
thread1会用
sendto(socket_fd, &buf, buf_len, 0, (struct sockaddr *) dst, sizeof(dst));
thread2会用
sendto(socket_fd, &buf2, buf2_len, 0, (struct sockaddr *) dst2, sizeof(dst2));
thread1与thread2不定时的会做上面的事
请问这样会不会发生错误? 是否需要lock?
感恩