diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-03-27 19:14:55 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-03-27 19:14:55 +0000 |
commit | c29301d6b19c28277b5a419e74297261d66e719e (patch) | |
tree | 697642cd2e886980983c07df0c23953228a22714 /libgo/runtime/go-note.c | |
parent | d253656a7be7461c2fc7bb638e93b9943a91de9b (diff) | |
download | gcc-c29301d6b19c28277b5a419e74297261d66e719e.zip gcc-c29301d6b19c28277b5a419e74297261d66e719e.tar.gz gcc-c29301d6b19c28277b5a419e74297261d66e719e.tar.bz2 |
Add runtime profiling infrastructure, not yet working.
From-SVN: r171579
Diffstat (limited to 'libgo/runtime/go-note.c')
-rw-r--r-- | libgo/runtime/go-note.c | 6 |
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; |