04302b3fe4
* lib/linux+gnu.c (getpid, signal): New function. * include/signal.h: Declare signal. * include/unistd.h: Declare getpid. * scaffold/tests/95-signal.c: Test it. * build-aux/check-mescc.sh (tests): Run it.
82 lines
2.1 KiB
C
82 lines
2.1 KiB
C
/* -*-comment-start: "//";comment-end:""-*-
|
|
* Mes --- Maxwell Equations of Software
|
|
* Copyright © 2017 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
|
*
|
|
* This file is part of Mes.
|
|
*
|
|
* Mes 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.
|
|
*
|
|
* Mes 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 Mes. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifndef __MES_SYS_STAT_H
|
|
#define __MES_SYS_STAT_H 1lei
|
|
|
|
#if WITH_GLIBC
|
|
#undef __MES_SYS_STAT_H
|
|
#include_next <sys/stat.h>
|
|
|
|
#else // ! WITH_GLIBC
|
|
|
|
#include <sys/types.h>
|
|
|
|
#ifndef __MES_MODE_T
|
|
#define __MES_MODE_T
|
|
typedef int mode_t;
|
|
#endif
|
|
|
|
struct stat
|
|
{
|
|
unsigned long st_dev;
|
|
unsigned long st_ino;
|
|
unsigned short st_mode;
|
|
unsigned short st_nlink;
|
|
unsigned short st_uid;
|
|
unsigned short st_gid;
|
|
unsigned long st_rdev;
|
|
long st_size;
|
|
unsigned int st_blksize;
|
|
unsigned int st_blocks;
|
|
long st_atime;
|
|
unsigned long st_atime_usec;
|
|
long st_mtime;
|
|
unsigned long st_mtime_usec;
|
|
long st_ctime;
|
|
unsigned long st_ctime_usec;
|
|
unsigned int __foo0;
|
|
unsigned int __foo1;
|
|
};
|
|
|
|
int chmod (char const *file_name, mode_t mode);
|
|
int mkdir (char const *file_name, mode_t mode);
|
|
int chown (char const *file_name, uid_t owner, gid_t group);
|
|
int rmdir (char const *file_name);
|
|
int stat (char const *file_name, struct stat *buf);
|
|
|
|
#define S_IFCHR 0020000
|
|
#define S_IFDIR 0040000
|
|
#define S_IFBLK 0060000
|
|
#define S_IFREG 0100000
|
|
#define S_IFLNK 0120000
|
|
#define S_IFMT 0170000
|
|
|
|
#define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
|
|
#define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
|
|
|
|
#define S_IRWXU 00700
|
|
#define S_IXUSR 00100
|
|
#define S_IWUSR 00200
|
|
#define S_IRUSR 00400
|
|
|
|
#endif // ! WITH_GLIBC
|
|
|
|
#endif // __MES_SYS_STAT_H
|