Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What Can I Use Besides usleep in a Modern POSIX Environment?

Tags:

c

posix

c99

I'm fairly new to C but writing a small multithreaded application. I want to introduce a delay to a thread. I'd been using 'usleep' and the behavior is what I desire - but it generates warnings in C99.

implicit declaration of function ‘usleep’

It's only a warning, but it bothers me. I've Googled for an answer but all I could find was a while-loop / timer approach that seemed like it would be CPU intensive.

EDIT:

My includes are:

#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <unistd.h>
#include <time.h>

And I'm invoking the compiler with:

c99 program.c -Wall -pedantic -W -lpthread

EDIT #2:

I've created a new file that contains:

#include <unistd.h>

int main(void) {
    usleep(10);
}

And I still get the warning.

EDIT #3: As suggested, I've updated the text of the question.

like image 705
Rob P. Avatar asked Dec 28 '22 13:12

Rob P.


1 Answers

The problem is that you are using a standard C99 compiler, but you're trying to access POSIX extensions. To expose the POSIX extensions you should for example define _POSIX_C_SOURCE to 200809L (for the current standard). For example this program:

#include <time.h>

int main(void) {
        struct timespec reqtime;
        reqtime.tv_sec = 1;
        reqtime.tv_nsec = 500000000;
        nanosleep(&reqtime, NULL);
}

will compile correctly and wait for 1.5 seconds (1 second + 500000000 nanoseconds) with the following compilation command:

c99 main.c -D _POSIX_C_SOURCE=200809L

The _POSIX_C_SOURCE macro must be defined with an appropriate value for the POSIX extensions to be available.

Also the options -Wall, -pedantic and -W are not defined for the POSIX c99 command, those look more like gcc commands to me (if they work on your system then that's fine, just be aware that they are not portable to other POSIX systems).

like image 66
Quantumboredom Avatar answered Jan 19 '23 00:01

Quantumboredom