summaryrefslogtreecommitdiff
path: root/src/runtime/os_solaris.h
blob: 3d9e1a2406347e8b7e23a12456268a8f474b9f8c (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Copyright 2014 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.


typedef uintptr kevent_udata;

struct sigaction;

void	runtime·sigpanic(void);

void	runtime·setitimer(int32, Itimerval*, Itimerval*);
void	runtime·sigaction(int32, struct SigactionT*, struct SigactionT*);
void	runtime·sigaltstack(SigaltstackT*, SigaltstackT*);
void	runtime·sigprocmask(int32, Sigset*, Sigset*);
void	runtime·unblocksignals(void);
int32	runtime·sysctl(uint32*, uint32, byte*, uintptr*, byte*, uintptr);


void	runtime·raisesigpipe(void);
void	runtime·setsig(int32, void(*)(int32, Siginfo*, void*, G*), bool);
void	runtime·sighandler(int32 sig, Siginfo *info, void *context, G *gp);
void	runtime·sigpanic(void);

enum {
	SS_DISABLE = 2,
	SIG_BLOCK = 1,
	SIG_UNBLOCK = 2,
	SIG_SETMASK = 3,
	NSIG = 73, /* number of signals in runtime·SigTab array */
	SI_USER = 0,
	_UC_SIGMASK = 0x01,
	_UC_CPU = 0x04,
	RLIMIT_AS = 10,
};

typedef struct Rlimit Rlimit;
struct Rlimit {
	int64   rlim_cur;
	int64   rlim_max;
};
int32   runtime·getrlimit(int32, Rlimit*);

// Call an external library function described by {fn, a0, ..., an}, with
// SysV conventions, switching to os stack during the call, if necessary.
uintptr	runtime·sysvicall0(uintptr fn);
uintptr	runtime·sysvicall1(uintptr fn, uintptr a1);
uintptr	runtime·sysvicall2(uintptr fn, uintptr a1, uintptr a2);
uintptr	runtime·sysvicall3(uintptr fn, uintptr a1, uintptr a2, uintptr a3);
uintptr	runtime·sysvicall4(uintptr fn, uintptr a1, uintptr a2, uintptr a3, uintptr a4);
uintptr	runtime·sysvicall5(uintptr fn, uintptr a1, uintptr a2, uintptr a3, uintptr a4, uintptr a5);
uintptr	runtime·sysvicall6(uintptr fn, uintptr a1, uintptr a2, uintptr a3, uintptr a4, uintptr a5, uintptr a6);
void	runtime·asmsysvicall6(void *c);

void	runtime·miniterrno(void *fn);