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)						      BSD System Calls Manual						      NANOSLEEP(2)

NAME
nanosleep -- high resolution sleep LIBRARY
Standard C Library (libc, -lc) SYNOPSIS
#include <time.h> int nanosleep(const struct timespec *rqtp, struct timespec *rmtp); DESCRIPTION
The nanosleep() suspends execution of the calling process until either the number of seconds and nanoseconds specified by rqtp have elapsed or a signal is delivered to the calling process and its action is to invoke a signal catching function or to terminate the process. The sus- pension time may be longer than requested due to the scheduling of other activity by the system. The struct timespec is described in timespec(3). RETURN VALUES
If the nanosleep() function returns because the requested time has elapsed, the value returned will be zero. If the nanosleep() function returns due to the delivery of a signal, the value returned will be the -1, and the global variable errno will be set to indicate the interruption. If rmtp is non-NULL, the timespec structure it references is updated to contain the unslept amount (the request time minus the time actually slept). ERRORS
If any of the following conditions occur, the nanosleep function shall return -1 and set errno to the corresponding value. [EFAULT] Either rqtp or rmtp points to memory that is not a valid part of the process address space. [EINTR] nanosleep was interrupted by the delivery of a signal. [EINVAL] rqtp specified a nanosecond value less than zero or greater than 1000 million. [ENOSYS] nanosleep is not supported by this implementation. SEE ALSO
sleep(3), timespec(3) STANDARDS
The nanosleep() function conforms to IEEE Std 1003.1b-1993 (``POSIX.1''). BSD
May 17, 2010 BSD
All times are GMT -4. The time now is 08:53 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy