mailing list of musl libc
 help / color / mirror / code / Atom feed
fba1f2a9140655e69245852fa2283d82f019e8a7 blob 322 bytes (raw)

1
2
3
4
5
6
7
8
9
 
#include "time32.h"
#include <time.h>
#include <pthread.h>

int __pthread_cond_timedwait_time32(pthread_cond_t *restrict c, pthread_mutex_t *restrict m, const struct timespec32 *restrict ts32)
{
	return pthread_cond_timedwait(c, m, !ts32 ? 0 : (&(struct timespec){
		.tv_sec = ts32->tv_sec, .tv_nsec = ts32->tv_nsec}));
}
debug log:

solving fba1f2a9 ...
found fba1f2a9 in https://git.vuxu.org/mirror/musl/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).