mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-17 10:11:43 +00:00
.github
.vscode
Drivers
Kernel
.vscode
arch
core
exec
files
include
include_std
sys
algorithm
assert.h
atomic
bitset
cassert
cctype
cfloat
climits
cmath
concepts
coroutine
cstddef
cstring
ctype.h
dlfcn.h
errno.h
exception
float.h
functional
initializer_list
inttypes.h
ios
iostream
istream
iterator
limits
limits.h
list
locale
math.h
memory
memory.h
mutex
new
optional
ostream
pthread.h
ranges
sched.h
signal.h
stdarg.h
stdatomic.h
stdbool.h
stddef.h
stdexcept
stdint.h
stdio.h
stdlib.h
streambuf
string
string.h
string_view
strings.h
stropts.h
system_error
termios.h
thread
time.h
tuple
type_traits
typeinfo
unistd.h
unordered_map
utility
utsname.h
vector
wchar.h
kshell
library
network
profiling
storage
subsystem
syscalls
tasking
tests
tty
virtualization
.gdbinit
.gitignore
ISSUES.md
Makefile
README.md
TODO.md
dump.sh
kernel.cpp
kernel.h
kernel_config.cpp
kernel_thread.cpp
kernel_vfs.cpp
Userspace
initrd
tools
.gitignore
.gitlab-ci.yml
CODE_OF_CONDUCT.md
CONTRIBUTING.md
CREDITS.md
Doxyfile
Fennix Drivers.code-workspace
Fennix Kernel.code-workspace
Fennix Userspace.code-workspace
Fennix Website.code-workspace
Fennix.code-workspace
LICENSE.md
LICENSES.md
Makefile
README.md
SECURITY.md
STYLE_GUIDE.md
config.mk
22 lines
730 B
C
22 lines
730 B
C
/*
|
|
This file is part of Fennix Kernel.
|
|
|
|
Fennix Kernel is free software: you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation, either version 3 of
|
|
the License, or (at your option) any later version.
|
|
|
|
Fennix Kernel is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with Fennix Kernel. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef _PTHREAD_H
|
|
#define _PTHREAD_H
|
|
|
|
#endif // !_PTHREAD_H
|