因此,我一直在寻找有关的东西,usleep()
而我发现摆脱它的只是#define
我所做的……还有其他建议吗?我需要摆脱这个警告......或者关于如何使用毫秒睡眠的任何想法。
#define _BSB_SOURCE
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <unistd.h>
#include <time.h>
int r = rand() % 1000 +1;
usleep(r*1000);
pthread_mutex_lock (&count_mutex);