v8  3.11.10(node0.8.26)
V8 is Google's open source JavaScript engine
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
platform-solaris.cc File Reference
#include <sys/stack.h>
#include <unistd.h>
#include <sys/mman.h>
#include <ucontext.h>
#include <dlfcn.h>
#include <pthread.h>
#include <sched.h>
#include <semaphore.h>
#include <time.h>
#include <sys/time.h>
#include <errno.h>
#include <ieeefp.h>
#include <signal.h>
#include <sys/regset.h>
#include "v8.h"
#include "platform-posix.h"
#include "platform.h"
#include "v8threads.h"
#include "vm-state-inl.h"
Include dependency graph for platform-solaris.cc:

Go to the source code of this file.

Data Structures

class  PosixMemoryMappedFile
 
struct  StackWalker
 
class  Thread::PlatformData
 
class  SolarisMutex
 
class  SolarisSemaphore
 
class  Sampler::PlatformData
 
class  SignalSender
 

Namespaces

 v8
 
 v8::internal
 

Macros

#define TIMEVAL_TO_TIMESPEC(tv, ts)
 
#define timeradd(a, b, result)
 

Functions

int signbit (double x)
 
double ceiling (double x)
 

Macro Definition Documentation

#define timeradd (   a,
  b,
  result 
)
Value:
do { \
(result)->tv_sec = (a)->tv_sec + (b)->tv_sec; \
(result)->tv_usec = (a)->tv_usec + (b)->tv_usec; \
if ((result)->tv_usec >= 1000000) { \
++(result)->tv_sec; \
(result)->tv_usec -= 1000000; \
} \
} while (0)

Definition at line 605 of file platform-solaris.cc.

Referenced by CygwinSemaphore::Wait(), SolarisSemaphore::Wait(), FreeBSDSemaphore::Wait(), OpenBSDSemaphore::Wait(), and LinuxSemaphore::Wait().

#define TIMEVAL_TO_TIMESPEC (   tv,
  ts 
)
Value:
do { \
(ts)->tv_sec = (tv)->tv_sec; \
(ts)->tv_nsec = (tv)->tv_usec * 1000; \
} while (false)

Definition at line 597 of file platform-solaris.cc.

Referenced by SolarisSemaphore::Wait().

Function Documentation

int signbit ( double  x)

Definition at line 66 of file platform-solaris.cc.