~john-koepi/ubuntu/trusty/golang/default

« back to all changes in this revision

Viewing changes to src/pkg/runtime/darwin/os.h

  • Committer: Bazaar Package Importer
  • Author(s): Ondřej Surý
  • Date: 2011-04-20 17:36:48 UTC
  • Revision ID: james.westby@ubuntu.com-20110420173648-ifergoxyrm832trd
Tags: upstream-2011.03.07.1
Import upstream version 2011.03.07.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright 2009 The Go Authors. All rights reserved.
 
2
// Use of this source code is governed by a BSD-style
 
3
// license that can be found in the LICENSE file.
 
4
 
 
5
int32   runtime·bsdthread_create(void*, M*, G*, void(*)(void));
 
6
void    runtime·bsdthread_register(void);
 
7
int32   runtime·mach_msg_trap(MachHeader*, int32, uint32, uint32, uint32, uint32, uint32);
 
8
uint32  runtime·mach_reply_port(void);
 
9
void    runtime·mach_semacquire(uint32);
 
10
uint32  runtime·mach_semcreate(void);
 
11
void    runtime·mach_semdestroy(uint32);
 
12
void    runtime·mach_semrelease(uint32);
 
13
void    runtime·mach_semreset(uint32);
 
14
uint32  runtime·mach_task_self(void);
 
15
uint32  runtime·mach_task_self(void);
 
16
uint32  runtime·mach_thread_self(void);
 
17
uint32  runtime·mach_thread_self(void);
 
18
 
 
19
struct Sigaction;
 
20
void    runtime·sigaction(uintptr, struct Sigaction*, struct Sigaction*);
 
21
 
 
22
struct StackT;
 
23
void    runtime·sigaltstack(struct StackT*, struct StackT*);
 
24
void    runtime·sigtramp(void);
 
25
void    runtime·sigpanic(void);