summaryrefslogtreecommitdiff
path: root/src/pkg/runtime/nacl/os.h
blob: eb4af57b2d74a6685f34672ba9d399c5da4461a6 (plain)
1
2
3
4
5
6
7
8
9
// 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 thread_create(void(*fn)(void), void *stk, void *tls, int32 tlssize);
void close(int32);
int32 mutex_create(void);
int32 mutex_lock(int32);
int32 mutex_unlock(int32);