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-cygwin.cc File Reference
#include <errno.h>
#include <pthread.h>
#include <semaphore.h>
#include <stdarg.h>
#include <strings.h>
#include <sys/time.h>
#include <sys/mman.h>
#include <unistd.h>
#include "v8.h"
#include "platform-posix.h"
#include "platform.h"
#include "v8threads.h"
#include "vm-state-inl.h"
#include "win32-headers.h"
Include dependency graph for platform-cygwin.cc:

Go to the source code of this file.

Data Structures

class  PosixMemoryMappedFile
 
class  Thread::PlatformData
 
class  CygwinMutex
 
class  CygwinSemaphore
 
class  Sampler::PlatformData
 
class  SamplerThread
 

Namespaces

 v8
 
 v8::internal
 

Macros

#define TIMEVAL_TO_TIMESPEC(tv, ts)
 

Functions

double ceiling (double x)
 

Macro Definition Documentation

#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 541 of file platform-cygwin.cc.

Referenced by CygwinSemaphore::Wait(), and FreeBSDSemaphore::Wait().