mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 06:04:57 +00:00
Everywhere: Refer to pthread.h
by its non-prefixed name
This removes a bit of noise from the following patches, where we will move the `pthread.h` header out of the `LibPthread` directory.
This commit is contained in:
parent
268c146c04
commit
e156f79f53
7 changed files with 7 additions and 7 deletions
|
@ -6,7 +6,7 @@
|
|||
|
||||
#include <AK/Assertions.h>
|
||||
#include <AK/Format.h>
|
||||
#include <LibPthread/pthread.h>
|
||||
#include <pthread.h>
|
||||
#include <signal.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <LibPthread/pthread.h>
|
||||
#include <LibTest/TestCase.h>
|
||||
#include <pthread.h>
|
||||
|
||||
static size_t exit_count = 0;
|
||||
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <LibPthread/pthread.h>
|
||||
#include <LibTest/TestCase.h>
|
||||
#include <pthread.h>
|
||||
|
||||
TEST_CASE(rwlock_init)
|
||||
{
|
||||
|
|
|
@ -4,9 +4,9 @@
|
|||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <LibPthread/pthread.h>
|
||||
#include <LibTest/TestCase.h>
|
||||
#include <errno.h>
|
||||
#include <pthread.h>
|
||||
#include <unistd.h>
|
||||
|
||||
TEST_CASE(spin_init_process_scope)
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <LibPthread/pthread.h>
|
||||
#include <pthread.h>
|
||||
|
||||
struct PthreadFunctions {
|
||||
int (*pthread_mutex_trylock)(pthread_mutex_t* mutex);
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
*/
|
||||
|
||||
#include <AK/Atomic.h>
|
||||
#include <LibPthread/pthread.h>
|
||||
#include <errno.h>
|
||||
#include <pthread.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#ifndef _DYNAMIC_LOADER
|
||||
|
|
|
@ -12,12 +12,12 @@
|
|||
#include <AK/Types.h>
|
||||
#include <AK/Utf8View.h>
|
||||
#include <LibELF/AuxiliaryVector.h>
|
||||
#include <LibPthread/pthread.h>
|
||||
#include <alloca.h>
|
||||
#include <assert.h>
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#include <pthread.h>
|
||||
#include <signal.h>
|
||||
#include <spawn.h>
|
||||
#include <stdio.h>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue