[libc] Add mtx_destroy which does nothing.
authorSiva Chandra Reddy <sivachandra@google.com>
Mon, 30 Aug 2021 20:42:45 +0000 (20:42 +0000)
committerSiva Chandra Reddy <sivachandra@google.com>
Mon, 30 Aug 2021 20:43:46 +0000 (20:43 +0000)
commit7a2a765745973ebeb041276d2d9489a000ba9371
tree6f104a5e2d1af7695b20cd0c4f90d9a37bdbf9fa
parentc58d4c4bd347474dd82dfa79b5f04bf09b58b66f
[libc] Add mtx_destroy which does nothing.

There is not cleanup to be done for the mutex type so mtx_destroy does
nothing.
libc/config/linux/x86_64/entrypoints.txt
libc/spec/stdc.td
libc/src/threads/CMakeLists.txt
libc/src/threads/linux/CMakeLists.txt
libc/src/threads/linux/mtx_destroy.cpp [new file with mode: 0644]
libc/src/threads/mtx_destroy.h [new file with mode: 0644]
libc/test/src/threads/CMakeLists.txt
libc/test/src/threads/call_once_test.cpp
libc/test/src/threads/mtx_test.cpp