PatchworkOS  19e446b
A non-POSIX operating system.
Loading...
Searching...
No Matches
mtx_destroy.c
Go to the documentation of this file.
1#include <stdatomic.h>
2#include <stdbool.h>
3#include <stdio.h>
4#include <sys/proc.h>
5#include <threads.h>
6
9
10void mtx_destroy(mtx_t* mutex)
11{
12 UNUSED(mutex);
13 // Do nothing
14}
#define UNUSED(x)
Mark a variable as unused.
Definition defs.h:96
void mtx_destroy(mtx_t *mutex)
Definition mtx_destroy.c:10