summaryrefslogtreecommitdiff
path: root/include/remote/win/unistd.h
blob: d4ff227871b919e4956351dea312183bd848c1ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// This is an incomplete & imprecice implementation of the Posix
// standard file by the same name


// Since this is only intended for VC++ compilers
// use #pragma once instead of guard macros
#pragma once

#ifdef _MSC_VER // Only for cross compilation to windows

#ifndef UNW_REMOTE_ONLY
// This is solely intended to enable compilation of libunwind
// for UNW_REMOTE_ONLY on windows
#error Cross compilation of libunwind on Windows can only support UNW_REMOTE_ONLY
#endif

#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <sys/types.h>

int          close(int);
int          getpagesize(void);
int          open(const char *, int, ...);
ssize_t      read(int fd, void *buf, size_t count);
ssize_t      write(int, const void *, size_t);
long         sysconf(int name);

#define _SC_PAGESIZE 11

#endif // _MSC_VER