Sponsored Content
Full Discussion: Where is nanosleep?
Top Forums Programming Where is nanosleep? Post 302367511 by konvalo on Tuesday 3rd of November 2009 12:05:11 AM
Old 11-03-2009
Where is nanosleep?

I use nanosleep under solaris10,like follows:
Code:
#include <pthread.h>
#include <time.h>
#include <sys/time.h>
struct to_info{
   void (*to_fn)(void *);
   void *to_arg;
   struct timespec to_wait;
};
void *timeout_helper(void *arg){
  struct to_info *tip;
  nanosleep(&tip->to_wait,NULL);
}

when I compile above,it raise following error:
undefined:nanosleep

Why? Which header file include nanosleep function? How to find this header file?

thanks

Last edited by pludi; 11-03-2009 at 02:19 AM.. Reason: code tags, please...
 

4 More Discussions You Might Find Interesting

1. Programming

nanosleep

Hello, Can anyone, please, guide me on the use of nanosleep. I'm learning threads. I want to introduce a delay (not nested for loops, something more customizable). Nanosleep looked useful (or any other form of customizable and easy-to-use delay). Sleep is too long. :) (2 Replies)
Discussion started by: ameya
2 Replies

2. Programming

nanosleep returns prematurely, with return value 0

Hi, I have encountered the following problem on Solaris 10: I have a thread that is asleep on nanosleep (set to 24 hours). Something that happens on another thread, causes the nanosleep to exit, even though the time has not elapsed. The returned value is 0 (so it doesn't look like it... (1 Reply)
Discussion started by: MeMyself
1 Replies

3. Programming

nanosleep

Application runs on both solaris 6 and 10. solaris 6 having only posix4.so library, solaris 10 having libposix4.so and librt.so Can we link application to lposix4 instead of lrt for nanosleep, sothat application will run in both machines? (2 Replies)
Discussion started by: satish@123
2 Replies

4. Programming

Nanosleep in signal call

Hi @ll :) I have a problem with my code but first a short description: 1. I have one signal call SIGUSR1 2. In the signal I try to use nanosleep and now: When I put kill -SIGUSR1 pid --> sometimes works fine, sometimes returns me an error with ,,Interrupt system call", sometimes I got... (5 Replies)
Discussion started by: mattdj
5 Replies
nanosleep(2)							System Calls Manual						      nanosleep(2)

NAME
nanosleep() - high resolution sleep SYNOPSIS
DESCRIPTION
The function causes the current thread to be suspended from execution until either the time interval specified by the argument has elapsed, or a signal is delivered to the calling thread and its action is to invoke a signal-catching function or to terminate the process. The suspension time may be longer than that requested because the argument value is rounded up to an integer multiple of the sleep resolution or because of the scheduling of other activity by the system. However, with the exception of the case of being interrupted by a signal, the suspension time will not be less than the time specified by as measured by the system clock, The use of the function has no effect on the action or blockage of any signal. RETURN VALUE
If the function returns because the requested time has elapsed, its return value is zero. If the function returns because it has been interrupted by a signal, the function returns a value of -1 and sets to indicate the interrup- tion. If the argument is non-NULL, the timespec structure referenced by it is updated to contain the amount of time remaining in the interval (the requested time minus the time actually slept). If the argument is NULL, the remaining time is not returned. If fails, it returns a value of -1 and sets to indicate the error. ERRORS
If any of the following conditions occur, the function returns -1 and sets (see errno(2)) to the corresponding value: The or arguments specify an invalid address. was interrupted by a signal. The argument specified a nanosecond value less than zero or greater than or equal to 1000 million. The function is not supported by this implementation. EXAMPLES
Suspend execution of the current thread for half a second: AUTHOR
was derived from the proposed IEEE POSIX P1003.4 Standard, Draft 14. SEE ALSO
clocks(2), timers(2), sleep(3C). STANDARDS CONFORMANCE
nanosleep(2)
All times are GMT -4. The time now is 05:31 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy