Qt 4.8
Typedefs | Functions
qfunctions_nacl.cpp File Reference
#include "qfunctions_nacl.h"
#include <pthread.h>
#include <qglobal.h>

Go to the source code of this file.

Typedefs

typedef long off64_t
 

Functions

int access (const char *, int)
 
int fcntl (int, int,...)
 
off64_t ftello64 (void *)
 
off64_t lseek64 (int, off_t, int)
 
int open (const char *, int,...)
 
int open64 (const char *, int,...)
 
int pthread_attr_getinheritsched (const pthread_attr_t *, int *)
 
int pthread_attr_setinheritsched (pthread_attr_t *, int)
 
int pthread_cancel (pthread_t)
 
void pthread_cleanup_pop (int)
 
void pthread_cleanup_push (void(*)(void *), void *)
 
int pthread_setcancelstate (int, int *)
 
int pthread_setcanceltype (int, int *)
 
void pthread_testcancel (void)
 
int select (int, fd_set *, fd_set *, fd_set *, struct timeval *)
 
int sigaction (int, const struct sigaction *, struct sigaction *)
 

Typedef Documentation

◆ off64_t

typedef long off64_t

Definition at line 138 of file qfunctions_nacl.cpp.

Function Documentation

◆ access()

int access ( const char *  ,
int   
)

◆ fcntl()

int fcntl ( int  ,
int  ,
  ... 
)

◆ ftello64()

off64_t ftello64 ( void *  )

Definition at line 139 of file qfunctions_nacl.cpp.

140 {
141  qFatal("ftello64 called");
142  return 0;
143 }
Q_CORE_EXPORT void qFatal(const char *,...)

◆ lseek64()

off64_t lseek64 ( int  ,
off_t  ,
int   
)

Definition at line 145 of file qfunctions_nacl.cpp.

146 {
147  qFatal("lseek64 called");
148  return 0;
149 }
Q_CORE_EXPORT void qFatal(const char *,...)

◆ open()

int open ( const char *  ,
int  ,
  ... 
)

◆ open64()

int open64 ( const char *  ,
int  ,
  ... 
)

Definition at line 128 of file qfunctions_nacl.cpp.

129 {
130  return 0;
131 }

◆ pthread_attr_getinheritsched()

int pthread_attr_getinheritsched ( const pthread_attr_t *  ,
int *   
)

Definition at line 104 of file qfunctions_nacl.cpp.

105 {
106  return 0;
107 }

◆ pthread_attr_setinheritsched()

int pthread_attr_setinheritsched ( pthread_attr_t *  ,
int   
)

Definition at line 98 of file qfunctions_nacl.cpp.

Referenced by QThread::start().

99 {
100  return 0;
101 }

◆ pthread_cancel()

int pthread_cancel ( pthread_t  )

Definition at line 93 of file qfunctions_nacl.cpp.

Referenced by QThread::terminate().

94 {
95  return 0;
96 }

◆ pthread_cleanup_pop()

void pthread_cleanup_pop ( int  )

Definition at line 72 of file qfunctions_nacl.cpp.

Referenced by QThreadPrivate::start().

73 {
74 
75 }

◆ pthread_cleanup_push()

void pthread_cleanup_push ( void(*)(void *)  ,
void *   
)

Definition at line 67 of file qfunctions_nacl.cpp.

Referenced by QThreadPrivate::start().

68 {
69 
70 }

◆ pthread_setcancelstate()

int pthread_setcancelstate ( int  ,
int *   
)

Definition at line 77 of file qfunctions_nacl.cpp.

Referenced by QThread::setTerminationEnabled(), and QThreadPrivate::start().

78 {
79  return 0;
80 }

◆ pthread_setcanceltype()

int pthread_setcanceltype ( int  ,
int *   
)

Definition at line 82 of file qfunctions_nacl.cpp.

83 {
84  return 0;
85 }

◆ pthread_testcancel()

void pthread_testcancel ( void  )

Definition at line 87 of file qfunctions_nacl.cpp.

Referenced by QThread::setTerminationEnabled(), and QThreadPrivate::start().

88 {
89 
90 }

◆ select()

int select ( int  ,
fd_set *  ,
fd_set *  ,
fd_set *  ,
struct timeval *   
)

◆ sigaction()

int sigaction ( int  ,
const struct sigaction *  ,
struct sigaction *   
)