mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-07-23 00:57:19 +03:00
Update brace style.
Add braces around single-line blocks, and remove line breaks before function-opening braces. This resolves #537.
This commit is contained in:
parent
5154ff32ee
commit
c4c2592c83
119 changed files with 2971 additions and 3572 deletions
|
|
@ -2,17 +2,16 @@
|
|||
|
||||
#ifdef _WIN32
|
||||
void
|
||||
thd_create(thd_t *thd, void *(*proc)(void *), void *arg)
|
||||
{
|
||||
thd_create(thd_t *thd, void *(*proc)(void *), void *arg) {
|
||||
LPTHREAD_START_ROUTINE routine = (LPTHREAD_START_ROUTINE)proc;
|
||||
*thd = CreateThread(NULL, 0, routine, arg, 0, NULL);
|
||||
if (*thd == NULL)
|
||||
if (*thd == NULL) {
|
||||
test_fail("Error in CreateThread()\n");
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
thd_join(thd_t thd, void **ret)
|
||||
{
|
||||
thd_join(thd_t thd, void **ret) {
|
||||
if (WaitForSingleObject(thd, INFINITE) == WAIT_OBJECT_0 && ret) {
|
||||
DWORD exit_code;
|
||||
GetExitCodeThread(thd, (LPDWORD) &exit_code);
|
||||
|
|
@ -22,15 +21,14 @@ thd_join(thd_t thd, void **ret)
|
|||
|
||||
#else
|
||||
void
|
||||
thd_create(thd_t *thd, void *(*proc)(void *), void *arg)
|
||||
{
|
||||
if (pthread_create(thd, NULL, proc, arg) != 0)
|
||||
thd_create(thd_t *thd, void *(*proc)(void *), void *arg) {
|
||||
if (pthread_create(thd, NULL, proc, arg) != 0) {
|
||||
test_fail("Error in pthread_create()\n");
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
thd_join(thd_t thd, void **ret)
|
||||
{
|
||||
thd_join(thd_t thd, void **ret) {
|
||||
pthread_join(thd, ret);
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue