mailing list of musl libc
 help / color / mirror / code / Atom feed
959b5be36d16bdae8bd16ab785969beb44ef284e blob 272 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
 
#include "pthread_impl.h"
#include <threads.h>

void cnd_destroy(cnd_t *cond)
{
	/* Critical section protected by lock */
	__lock(&cond->_cx_lock);
	__cnd_t * ret = cond->_cx_cnd;
	cond->_cx_cnd = 0;
	__unlock(&cond->_cx_lock);

	if (ret) __cnd_unref(ret);
}
debug log:

solving 0a99eef ...
found 0a99eef in https://inbox.vuxu.org/musl/1408049748.4951.134.camel@eris.loria.fr/

applying [1/1] https://inbox.vuxu.org/musl/1408049748.4951.134.camel@eris.loria.fr/
diff --git a/src/thread/cnd_destroy.c b/src/thread/cnd_destroy.c\r
new file mode 100644\r
index 0000000..0a99eef\r

1:7: trailing whitespace.
#include "pthread_impl.h"\r
1:8: trailing whitespace.
#include <threads.h>\r
1:9: trailing whitespace.
\r
1:10: trailing whitespace.
void cnd_destroy(cnd_t *cond)\r
1:11: trailing whitespace.
{\r
Checking patch src/thread/cnd_destroy.c...
Applied patch src/thread/cnd_destroy.c cleanly.
warning: squelched 8 whitespace errors
warning: 13 lines add whitespace errors.

index at:
100644 959b5be36d16bdae8bd16ab785969beb44ef284e	src/thread/cnd_destroy.c

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).