2010-10-18 10:32:55 -06:00
|
|
|
// Copyright 2010 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2011-10-05 10:07:44 -06:00
|
|
|
// Plan 9-specific system calls
|
|
|
|
int32 runtime·open(uint8 *file, int32 mode);
|
2011-11-17 20:09:28 -07:00
|
|
|
int32 runtime·pread(int32 fd, void *buf, int32 nbytes, int64 offset);
|
|
|
|
int32 runtime·pwrite(int32 fd, void *buf, int32 nbytes, int64 offset);
|
2011-10-05 10:07:44 -06:00
|
|
|
int32 runtime·read(int32 fd, void *buf, int32 nbytes);
|
|
|
|
int32 runtime·close(int32 fd);
|
|
|
|
void runtime·exits(int8* msg);
|
|
|
|
int32 runtime·brk_(void*);
|
|
|
|
int32 runtime·sleep(int32 ms);
|
|
|
|
int32 runtime·rfork(int32 flags, void *stk, M *m, G *g, void (*fn)(void));
|
|
|
|
int32 runtime·plan9_semacquire(uint32 *addr, int32 block);
|
|
|
|
int32 runtime·plan9_semrelease(uint32 *addr, int32 count);
|
2010-10-18 10:32:55 -06:00
|
|
|
|
2011-06-10 01:23:54 -06:00
|
|
|
/* open */
|
|
|
|
enum
|
|
|
|
{
|
2011-11-17 20:09:28 -07:00
|
|
|
OREAD = 0,
|
|
|
|
OWRITE = 1,
|
|
|
|
ORDWR = 2,
|
|
|
|
OEXEC = 3,
|
|
|
|
OTRUNC = 16,
|
|
|
|
OCEXEC = 32,
|
|
|
|
ORCLOSE = 64,
|
|
|
|
OEXCL = 0x1000
|
2011-06-10 01:23:54 -06:00
|
|
|
};
|
|
|
|
|
2010-10-18 10:32:55 -06:00
|
|
|
/* rfork */
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
RFNAMEG = (1<<0),
|
|
|
|
RFENVG = (1<<1),
|
|
|
|
RFFDG = (1<<2),
|
|
|
|
RFNOTEG = (1<<3),
|
|
|
|
RFPROC = (1<<4),
|
|
|
|
RFMEM = (1<<5),
|
|
|
|
RFNOWAIT = (1<<6),
|
|
|
|
RFCNAMEG = (1<<10),
|
|
|
|
RFCENVG = (1<<11),
|
|
|
|
RFCFDG = (1<<12),
|
|
|
|
RFREND = (1<<13),
|
|
|
|
RFNOMNT = (1<<14)
|
|
|
|
};
|
2011-06-10 01:23:54 -06:00
|
|
|
|
|
|
|
typedef struct Tos Tos;
|
|
|
|
typedef intptr Plink;
|
|
|
|
|
|
|
|
struct Tos {
|
|
|
|
struct /* Per process profiling */
|
|
|
|
{
|
|
|
|
Plink *pp; /* known to be 0(ptr) */
|
|
|
|
Plink *next; /* known to be 4(ptr) */
|
|
|
|
Plink *last;
|
|
|
|
Plink *first;
|
|
|
|
uint32 pid;
|
|
|
|
uint32 what;
|
|
|
|
} prof;
|
|
|
|
uint64 cyclefreq; /* cycle clock frequency if there is one, 0 otherwise */
|
|
|
|
int64 kcycles; /* cycles spent in kernel */
|
|
|
|
int64 pcycles; /* cycles spent in process (kernel + user) */
|
|
|
|
uint32 pid; /* might as well put the pid here */
|
|
|
|
uint32 clock;
|
|
|
|
/* top of stack is here */
|
|
|
|
};
|
|
|
|
|
2012-02-15 12:36:20 -07:00
|
|
|
#define NSIG 1
|