2012-04-24 01:22:36 +00:00
|
|
|
/*
|
2014-09-14 22:43:30 +00:00
|
|
|
Copyright 2012 Wolfgang Thaller.
|
2012-04-24 01:22:36 +00:00
|
|
|
|
2014-09-14 22:43:30 +00:00
|
|
|
This file is part of Retro68.
|
2012-04-24 01:22:36 +00:00
|
|
|
|
2014-09-14 22:43:30 +00:00
|
|
|
Retro68 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.
|
2012-04-24 01:22:36 +00:00
|
|
|
|
2014-09-14 22:43:30 +00:00
|
|
|
Retro68 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.
|
2012-04-24 01:22:36 +00:00
|
|
|
|
2014-09-14 22:43:30 +00:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Retro68. If not, see <http://www.gnu.org/licenses/>.
|
2012-04-24 01:22:36 +00:00
|
|
|
*/
|
|
|
|
|
2012-03-29 08:29:41 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <MacMemory.h>
|
|
|
|
#include <Processes.h>
|
|
|
|
|
|
|
|
int isatty(int fd) { return fd >= 0 && fd <= 2; }
|
|
|
|
void *sbrk(long increment)
|
|
|
|
{
|
2014-09-14 22:43:30 +00:00
|
|
|
Debugger();
|
|
|
|
return NewPtrClear(increment);
|
2012-03-29 08:29:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _exit(int status)
|
|
|
|
{
|
2014-09-30 09:00:33 +00:00
|
|
|
//if(status != 0)
|
|
|
|
// Debugger();
|
2014-09-14 22:43:30 +00:00
|
|
|
ExitToShell();
|
|
|
|
for(;;)
|
|
|
|
;
|
2012-03-29 08:29:41 +00:00
|
|
|
}
|
|
|
|
|
2014-09-30 09:00:33 +00:00
|
|
|
ssize_t _consolewrite(int fd, const void *buf, size_t count);
|
|
|
|
ssize_t _consoleread(int fd, void *buf, size_t count);
|
2014-09-17 01:35:18 +00:00
|
|
|
|
2012-03-29 08:29:41 +00:00
|
|
|
ssize_t write(int fd, const void *buf, size_t count)
|
|
|
|
{
|
2014-09-30 09:00:33 +00:00
|
|
|
return _consolewrite(fd,buf,count);
|
2012-03-29 08:29:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ssize_t read(int fd, void *buf, size_t count)
|
|
|
|
{
|
2014-09-30 09:00:33 +00:00
|
|
|
return _consoleread(fd,buf,count);
|
2012-03-29 08:29:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int open(const char* name, int flags, mode_t mode)
|
|
|
|
{
|
2014-09-14 22:43:30 +00:00
|
|
|
return -1;
|
2012-03-29 08:29:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int close(int fd)
|
|
|
|
{
|
2014-09-14 22:43:30 +00:00
|
|
|
return -1;
|
2012-03-29 08:29:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int fstat(int fd, struct stat *buf)
|
|
|
|
{
|
2014-09-14 22:43:30 +00:00
|
|
|
return -1;
|
2012-03-29 08:29:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
off_t lseek(int fd, off_t offset, int whence)
|
|
|
|
{
|
2014-09-14 22:43:30 +00:00
|
|
|
return (off_t) -1;
|
2012-03-29 08:29:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int kill(pid_t pid, int sig)
|
|
|
|
{
|
2014-09-14 22:43:30 +00:00
|
|
|
if(pid == 42)
|
|
|
|
_exit(42);
|
|
|
|
else
|
|
|
|
return -1;
|
2012-03-29 08:29:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pid_t getpid(void)
|
|
|
|
{
|
2014-09-14 22:43:30 +00:00
|
|
|
return 42;
|
2012-03-29 08:29:41 +00:00
|
|
|
}
|