summaryrefslogtreecommitdiff
path: root/src/pkg/runtime/darwin/os.h
blob: 51a164c3391f924db0f670c50c60e78fe01e4cba (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
// Copyright 2009 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.

int32	bsdthread_create(void*, M*, G*, void(*)(void));
void	bsdthread_register(void);
int32	mach_msg_trap(MachHeader*, int32, uint32, uint32, uint32, uint32, uint32);
uint32	mach_reply_port(void);
void	mach_semacquire(uint32);
uint32	mach_semcreate(void);
void	mach_semdestroy(uint32);
void	mach_semrelease(uint32);
void	mach_semreset(uint32);
uint32	mach_task_self(void);
uint32	mach_task_self(void);
uint32	mach_thread_self(void);
uint32	mach_thread_self(void);

struct Sigaction;
void	sigaction(uintptr, struct Sigaction*, struct Sigaction*);

struct StackT;
void	sigaltstack(struct StackT*, struct StackT*);
void	sigtramp(void);
void	sigpanic(void);