Removed <libmaxsi/thread.h> header.

This commit is contained in:
Jonas 'Sortie' Termansen 2012-09-22 01:09:20 +02:00
parent 1f1bdc8c22
commit 8b7eef9fe4
4 changed files with 50 additions and 99 deletions

View File

@ -155,14 +155,15 @@ setjmp.o \
setlocale.o \
settermmode.o \
signal.o \
sleep.o \
sortix-sound.o \
stat.o \
stdio.o \
thread.o \
time.o \
truncate.o \
umask.o \
unlink.o \
usleep.o \
vscanf.o \
winsize.o \
write.o \

View File

@ -1,6 +1,6 @@
/******************************************************************************
/*******************************************************************************
COPYRIGHT(C) JONAS 'SORTIE' TERMANSEN 2011.
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012.
This file is part of LibMaxsi.
@ -11,32 +11,24 @@
LibMaxsi 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 Lesser General Public License for
more details.
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
details.
You should have received a copy of the GNU Lesser General Public License
along with LibMaxsi. If not, see <http://www.gnu.org/licenses/>.
thread.h
Exposes system calls for thread creation and management.
sleep.cpp
Blocks the current thread for for at least N seconds.
******************************************************************************/
*******************************************************************************/
#ifndef LIBMAXSI_THREAD_H
#define LIBMAXSI_THREAD_H
#include <sys/syscall.h>
#include <unistd.h>
namespace Maxsi
DEFN_SYSCALL1_VOID(SysSleep, SYSCALL_SLEEP, long);
extern "C" unsigned sleep(unsigned secs)
{
namespace Thread
{
typedef void* (*Entry)(void*);
size_t Create(Entry Start, const void* Parameter, size_t StackSize = SIZE_MAX);
void Exit(const void* Result);
void Sleep(long Seconds);
void USleep(long Microseconds);
}
SysSleep(secs);
return 0;
}
#endif

View File

@ -1,76 +0,0 @@
/******************************************************************************
COPYRIGHT(C) JONAS 'SORTIE' TERMANSEN 2011.
This file is part of LibMaxsi.
LibMaxsi is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option)
any later version.
LibMaxsi 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 Lesser General Public License for
more details.
You should have received a copy of the GNU Lesser General Public License
along with LibMaxsi. If not, see <http://www.gnu.org/licenses/>.
thread.cpp
Exposes system calls for thread creation and management.
******************************************************************************/
#include <libmaxsi/platform.h>
#include <sys/types.h>
#include <sys/syscall.h>
#include <libmaxsi/thread.h>
#ifdef SORTIX_KERNEL
extern "C" void PanicF(const char* Format, ...);
#endif
namespace Maxsi
{
namespace Thread
{
typedef void (*SysEntry)(size_t, Entry, void*);
DEFN_SYSCALL4(size_t, SysCreate, 0, SysEntry, Entry, const void*, size_t);
DEFN_SYSCALL1_VOID(SysExit, SYSCALL_EXIT, const void*);
DEFN_SYSCALL1_VOID(SysSleep, SYSCALL_SLEEP, long);
DEFN_SYSCALL1_VOID(SysUSleep, SYSCALL_USLEEP, long);
void Exit(const void* Result)
{
SysExit(Result);
}
void ThreadStartup(size_t Id, Entry Start, void* Parameter)
{
Exit(Start(Parameter));
}
size_t Create(Entry Start, const void* Parameter, size_t StackSize)
{
return SysCreate(&ThreadStartup, Start, Parameter, StackSize);
}
extern "C" unsigned sleep(unsigned Seconds) { SysSleep(Seconds); return 0; }
// TODO: Thinking about it, there is no need for this to be a long.
// Sortix will never run for that long time, and shouldn't it be unsigned long?
void Sleep(long Seconds)
{
SysSleep(Seconds);
}
extern "C" int usleep(useconds_t Microseconds) { SysUSleep(Microseconds); return 0; }
void USleep(long Microseconds)
{
SysUSleep(Microseconds);
}
}
}

34
libmaxsi/usleep.cpp Normal file
View File

@ -0,0 +1,34 @@
/*******************************************************************************
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012.
This file is part of LibMaxsi.
LibMaxsi is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option)
any later version.
LibMaxsi 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 Lesser General Public License for more
details.
You should have received a copy of the GNU Lesser General Public License
along with LibMaxsi. If not, see <http://www.gnu.org/licenses/>.
usleep.cpp
Blocks the current thread for for at least N micro seconds.
*******************************************************************************/
#include <sys/syscall.h>
#include <unistd.h>
DEFN_SYSCALL1_VOID(SysUSleep, SYSCALL_USLEEP, long);
extern "C" int usleep(useconds_t usecs)
{
SysUSleep(usecs);
return 0;
}