You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
show DIR, dirent, Stat, timespec, pthread_t, pthread_attr_t;
10
11
11
12
/// Gets metadata for a file.
12
13
///
@@ -65,3 +66,103 @@ extension DirentPtrExtensions on ffi.Pointer<dirent> {
65
66
/// Need because of https://github.com/dart-lang/sdk/issues/41237.
66
67
ffi.Pointer<ffi.Char> get d_name_ptr =>libc_shim_d_name_ptr(this);
67
68
}
69
+
70
+
// <pthread.h>
71
+
72
+
/// Unlocks all threads waiting on a condition variable.
73
+
///
74
+
/// See the [POSIX specification for `pthread_cond_broadcast`](https://pubs.opengroup.org/onlinepubs/9699919799/functions/pthread_cond_broadcast.html).
/// Waits on a condition variable for a given amount of time.
99
+
///
100
+
/// See the [POSIX specification for `pthread_cond_timedwait`](https://pubs.opengroup.org/onlinepubs/9699919799/functions/pthread_cond_timedwait.html).
/// Locks a mutex, failing if the lock is not acquired before a timeout.
155
+
///
156
+
/// Available on Android and Linux.
157
+
///
158
+
/// See the [POSIX specification for `pthread_mutex_timedlock`](https://pubs.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_timedlock.html).
0 commit comments