aboutsummaryrefslogtreecommitdiff
path: root/libgo/runtime/go-note.c
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/runtime/go-note.c')
-rw-r--r--libgo/runtime/go-note.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libgo/runtime/go-note.c b/libgo/runtime/go-note.c
index 3b750f3..2b80b9b 100644
--- a/libgo/runtime/go-note.c
+++ b/libgo/runtime/go-note.c
@@ -21,7 +21,7 @@ static pthread_cond_t note_cond = PTHREAD_COND_INITIALIZER;
notewakeup. */
void
-noteclear (Note* n)
+runtime_noteclear (Note* n)
{
int32 i;
@@ -37,7 +37,7 @@ noteclear (Note* n)
/* Wait until notewakeup is called. */
void
-notesleep (Note* n)
+runtime_notesleep (Note* n)
{
int32 i;
@@ -57,7 +57,7 @@ notesleep (Note* n)
/* Wake up every thread sleeping on the note. */
void
-notewakeup (Note *n)
+runtime_notewakeup (Note *n)
{
int32 i;