cosmopolitan/test/libc/thread/pthread_cancel_deferred_cond_test.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.7 KiB
C
Raw Permalink Normal View History

// Copyright 2024 Justine Alexandra Roberts Tunney
//
// Permission to use, copy, modify, and/or distribute this software for
// any purpose with or without fee is hereby granted, provided that the
// above copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
// WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
// AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
// DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
// PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
// TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.
2024-07-21 13:41:30 +00:00
#include <errno.h>
#include <pthread.h>
#include <stdio.h>
2024-07-21 13:41:30 +00:00
#include <stdlib.h>
#include <unistd.h>
int got_cleanup;
pthread_cond_t cv;
pthread_mutex_t mu;
2024-07-21 13:41:30 +00:00
void cleanup(void* arg) {
got_cleanup = 1;
}
void* worker(void* arg) {
pthread_cleanup_push(cleanup, 0);
if (pthread_mutex_lock(&mu))
_Exit(11);
pthread_cond_wait(&cv, &mu);
_Exit(12);
pthread_cleanup_pop(0);
}
int main(int argc, char* argv[]) {
void* rc;
pthread_t th;
pthread_mutexattr_t at;
pthread_mutexattr_init(&at);
pthread_mutexattr_settype(&at, PTHREAD_MUTEX_DEFAULT);
pthread_mutex_init(&mu, &at);
pthread_mutexattr_destroy(&at);
pthread_cond_init(&cv, 0);
2024-07-21 13:41:30 +00:00
if (pthread_create(&th, 0, worker, 0))
return 2;
if (pthread_cancel(th))
return 3;
if (pthread_join(th, &rc))
return 4;
if (rc != PTHREAD_CANCELED)
return 5;
if (!got_cleanup)
return 6;
if (pthread_mutex_trylock(&mu) != EBUSY)
return 7;
pthread_mutex_destroy(&mu);
pthread_cond_destroy(&cv);
2024-07-21 13:41:30 +00:00
}