object pthread
- Annotations
- @link( "pthread" ) @extern()
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- pthread
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- type routine = CFuncPtr0[Unit]
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
PTHREAD_CANCELED: Ptr[Byte]
- Annotations
- @name( "scalanative_pthread_canceled" )
-
def
PTHREAD_CANCEL_ASYNCHRONOUS: CInt
- Annotations
- @name( ... )
-
def
PTHREAD_CANCEL_DEFERRED: CInt
- Annotations
- @name( ... )
-
def
PTHREAD_CANCEL_DISABLE: CInt
- Annotations
- @name( ... )
-
def
PTHREAD_CANCEL_ENABLE: CInt
- Annotations
- @name( "scalanative_pthread_cancel_enable" )
-
def
PTHREAD_CREATE_DETACHED: CInt
- Annotations
- @name( ... )
-
def
PTHREAD_CREATE_JOINABLE: CInt
- Annotations
- @name( ... )
-
def
PTHREAD_EXPLICIT_SCHED: CInt
- Annotations
- @name( ... )
-
def
PTHREAD_INHERIT_SCHED: CInt
- Annotations
- @name( "scalanative_pthread_inherit_sched" )
-
def
PTHREAD_MUTEX_DEFAULT: CInt
- Annotations
- @name( "scalanative_pthread_mutex_default" )
-
def
PTHREAD_MUTEX_ERRORCHECK: CInt
- Annotations
- @name( ... )
-
def
PTHREAD_MUTEX_NORMAL: CInt
- Annotations
- @name( "scalanative_pthread_mutex_normal" )
-
def
PTHREAD_MUTEX_RECURSIVE: CInt
- Annotations
- @name( ... )
-
def
PTHREAD_ONCE_INIT: pthread_once_t
- Annotations
- @name( "scalanative_pthread_once_init" )
-
def
PTHREAD_PRIO_INHERIT: CInt
- Annotations
- @name( "scalanative_pthread_prio_inherit" )
-
def
PTHREAD_PRIO_NONE: CInt
- Annotations
- @name( "scalanative_pthread_prio_none" )
-
def
PTHREAD_PRIO_PROTECT: CInt
- Annotations
- @name( "scalanative_pthread_prio_protect" )
-
def
PTHREAD_PROCESS_PRIVATE: CInt
- Annotations
- @name( ... )
-
def
PTHREAD_PROCESS_SHARED: CInt
- Annotations
- @name( ... )
-
def
PTHREAD_SCOPE_PROCESS: CInt
- Annotations
- @name( "scalanative_pthread_scope_process" )
-
def
PTHREAD_SCOPE_SYSTEM: CInt
- Annotations
- @name( "scalanative_pthread_scope_system" )
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def pthread_atfork(prepare: routine, parent: routine, child: routine): CInt
- def pthread_attr_destroy(attr: Ptr[pthread_attr_t]): CInt
- def pthread_attr_getdetachstate(attr: Ptr[pthread_attr_t], detachstate: Ptr[CInt]): CInt
- def pthread_attr_getguardsize(attr: Ptr[pthread_attr_t], guardsize: Ptr[CSize]): CInt
- def pthread_attr_getinheritsched(attr: Ptr[pthread_attr_t], inheritsched: Ptr[CInt]): CInt
- def pthread_attr_getschedparam(attr: Ptr[pthread_attr_t], param: Ptr[sched_param]): CInt
- def pthread_attr_getschedpolicy(attr: Ptr[pthread_attr_t], policy: Ptr[CInt]): CInt
- def pthread_attr_getscope(attr: Ptr[pthread_attr_t], scope: Ptr[CInt]): CInt
- def pthread_attr_getstacksize(attr: Ptr[pthread_attr_t], stacksize: Ptr[CSize]): CInt
- def pthread_attr_init(attr: Ptr[pthread_attr_t]): CInt
- def pthread_attr_setdetachstate(attr: Ptr[pthread_attr_t], detachstate: CInt): CInt
- def pthread_attr_setguardsize(attr: Ptr[pthread_attr_t], guardsize: CSize): CInt
- def pthread_attr_setinheritsched(attr: Ptr[pthread_attr_t], inheritsched: CInt): CInt
- def pthread_attr_setschedparam(attr: Ptr[pthread_attr_t], param: Ptr[sched_param]): CInt
- def pthread_attr_setschedpolicy(attr: Ptr[pthread_attr_t], policy: CInt): CInt
- def pthread_attr_setscope(attr: Ptr[pthread_attr_t], scope: CInt): CInt
- def pthread_attr_setstackaddr(attr: Ptr[pthread_attr_t], stackaddr: Ptr[Byte]): CInt
- def pthread_attr_setstacksize(attr: Ptr[pthread_attr_t], stacksize: CSize): CInt
-
def
pthread_attr_t_size: CSize
- Annotations
- @name( "scalanative_pthread_attr_t_size" )
- def pthread_cancel(thread: pthread_t): CInt
- def pthread_cond_broadcast(cond: Ptr[pthread_cond_t]): CInt
- def pthread_cond_destroy(cond: Ptr[pthread_cond_t]): CInt
- def pthread_cond_init(cond: Ptr[pthread_cond_t], attr: Ptr[pthread_condattr_t]): CInt
- def pthread_cond_signal(cond: Ptr[pthread_cond_t]): CInt
-
def
pthread_cond_t_size: CSize
- Annotations
- @name( "scalanative_pthread_cond_t_size" )
- def pthread_cond_timedwait(cond: Ptr[pthread_cond_t], mutex: Ptr[pthread_mutex_t], timespec: Ptr[timespec]): CInt
- def pthread_cond_wait(cond: Ptr[pthread_cond_t], mutex: Ptr[pthread_mutex_t]): CInt
- def pthread_condattr_destroy(attr: Ptr[pthread_condattr_t]): CInt
- def pthread_condattr_getpshared(attr: Ptr[pthread_condattr_t], pshared: Ptr[CInt]): CInt
- def pthread_condattr_init(attr: Ptr[pthread_condattr_t]): CInt
- def pthread_condattr_setpshared(attr: Ptr[pthread_condattr_t], pshared: CInt): CInt
-
def
pthread_condattr_t_size: CSize
- Annotations
- @name( ... )
- def pthread_create(thread: Ptr[pthread_t], attr: Ptr[pthread_attr_t], startroutine: CFuncPtr1[Ptr[Byte], Ptr[Byte]], args: Ptr[Byte]): CInt
- def pthread_detach(thread: pthread_t): CInt
- def pthread_equal(thread1: pthread_t, thread2: pthread_t): CInt
- def pthread_exit(retval: Ptr[Byte]): Unit
- def pthread_getconcurrency(): CInt
- def pthread_getschedparam(thread: pthread_t, policy: Ptr[CInt], param: Ptr[sched_param]): CInt
- def pthread_getspecific(key: pthread_key_t): Ptr[Byte]
- def pthread_join(thread: pthread_t, value_ptr: Ptr[Ptr[Byte]]): CInt
- def pthread_key_create(key: Ptr[pthread_key_t], destructor: CFuncPtr1[Ptr[Byte], Unit]): CInt
- def pthread_key_delete(key: pthread_key_t): CInt
- def pthread_kill(key: pthread_t, sig: CInt): CInt
- def pthread_mutex_destroy(mutex: Ptr[pthread_mutex_t]): CInt
- def pthread_mutex_getprioceiling(mutex: Ptr[pthread_mutex_t], prioceiling: Ptr[CInt]): CInt
- def pthread_mutex_init(mutex: Ptr[pthread_mutex_t], attr: Ptr[pthread_mutexattr_t]): CInt
- def pthread_mutex_lock(mutex: Ptr[pthread_mutex_t]): CInt
- def pthread_mutex_setprioceiling(mutex: Ptr[pthread_mutex_t], prioceiling: CInt, old_prioceiling: Ptr[CInt]): CInt
-
def
pthread_mutex_t_size: CSize
- Annotations
- @name( "scalanative_pthread_mutex_t_size" )
- def pthread_mutex_trylock(mutex: Ptr[pthread_mutex_t]): CInt
- def pthread_mutex_unlock(mutex: Ptr[pthread_mutex_t]): CInt
- def pthread_mutexattr_destroy(attr: Ptr[pthread_mutexattr_t]): CInt
- def pthread_mutexattr_getprioceiling(attr: Ptr[pthread_mutexattr_t], prioceiling: Ptr[CInt]): CInt
- def pthread_mutexattr_getprotocol(attr: Ptr[pthread_mutexattr_t], protocol: Ptr[CInt]): CInt
- def pthread_mutexattr_getpshared(attr: Ptr[pthread_mutexattr_t], pshared: Ptr[CInt]): CInt
- def pthread_mutexattr_gettype(attr: Ptr[pthread_mutexattr_t], tp: Ptr[CInt]): CInt
- def pthread_mutexattr_init(attr: Ptr[pthread_mutexattr_t]): CInt
- def pthread_mutexattr_setprioceiling(attr: Ptr[pthread_mutexattr_t], prioceiling: CInt): CInt
- def pthread_mutexattr_setprotocol(attr: Ptr[pthread_mutexattr_t], protocol: CInt): CInt
- def pthread_mutexattr_setpshared(attr: Ptr[pthread_mutexattr_t], pshared: CInt): CInt
- def pthread_mutexattr_settype(attr: Ptr[pthread_mutexattr_t], tp: CInt): CInt
-
def
pthread_mutexattr_t_size: CSize
- Annotations
- @name( ... )
- def pthread_once(once_control: Ptr[pthread_once_t], init_routine: routine): CInt
- def pthread_rwlock_destroy(rwlock: Ptr[pthread_rwlock_t]): CInt
- def pthread_rwlock_init(rwlock: Ptr[pthread_rwlock_t], attr: Ptr[pthread_rwlockattr_t]): CInt
- def pthread_rwlock_rdlock(rwlock: Ptr[pthread_rwlock_t]): CInt
- def pthread_rwlock_tryrdlock(rwlock: Ptr[pthread_rwlock_t]): CInt
- def pthread_rwlock_trywrlock(rwlock: Ptr[pthread_rwlock_t]): CInt
- def pthread_rwlock_unlock(rwlock: Ptr[pthread_rwlock_t]): CInt
- def pthread_rwlock_wrlock(rwlock: Ptr[pthread_rwlock_t]): CInt
- def pthread_rwlockattr_destroy(attr: Ptr[pthread_rwlockattr_t]): CInt
- def pthread_rwlockattr_getpshared(attr: Ptr[pthread_rwlockattr_t], pshared: Ptr[CInt]): CInt
- def pthread_rwlockattr_init(attr: Ptr[pthread_rwlockattr_t]): CInt
- def pthread_rwlockattr_setpshared(attr: Ptr[pthread_rwlockattr_t], pshared: CInt): CInt
- def pthread_self(): pthread_t
- def pthread_setcancelstate(state: CInt, oldstate: Ptr[CInt]): CInt
- def pthread_setcanceltype(tp: CInt, oldtype: Ptr[CInt]): CInt
- def pthread_setconcurrency(concurrency: CInt): CInt
- def pthread_setschedparam(thread: pthread_t, policy: CInt, param: Ptr[sched_param]): CInt
- def pthread_setspecific(key: pthread_key_t, value: Ptr[Byte]): CInt
-
def
pthread_t_size: CSize
- Annotations
- @name( "scalanative_pthread_t_size" )
- def pthread_testcancel(): Unit
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()