]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Move two decls out of core.h into pub_core_syscalls.h where they belong.
authorNicholas Nethercote <njn@valgrind.org>
Fri, 10 Jun 2005 23:16:13 +0000 (23:16 +0000)
committerNicholas Nethercote <njn@valgrind.org>
Fri, 10 Jun 2005 23:16:13 +0000 (23:16 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3874

coregrind/core.h
coregrind/pub_core_syscalls.h

index 88158f1990f974cb92caab57e2b5c230499d5757..7f5146c7f921a85268564f85f1ec68498de2145a 100644 (file)
@@ -220,13 +220,6 @@ extern void
 // Run a thread from beginning to end. 
 extern VgSchedReturnCode VGO_(thread_wrapper)(Word /*ThreadId*/ tid);
 
-// Allocates a stack for the first thread, then runs it,
-// as if the thread had been set up by clone()
-extern void VGP_(main_thread_wrapper_NORETURN)(ThreadId tid);
-
-// Return how many bytes of a thread's Valgrind stack are unused
-extern SSizeT VGA_(stack_unused)(ThreadId tid);
-
 // wait until all other threads are dead
 extern void VGA_(reap_threads)(ThreadId self);
 
@@ -300,3 +293,4 @@ extern Bool VGA_(client_requests)(ThreadId tid, UWord *args);
 /*--------------------------------------------------------------------*/
 /*--- end                                                          ---*/
 /*--------------------------------------------------------------------*/
+
index e54dc2ca9f30468ff117848db428bb92282dcc46..1f775aac708ec285f6a31bf8fcd90fd5141b57c9 100644 (file)
 // but also the code that executes them, and related stuff.
 //--------------------------------------------------------------------
 
+// Return how many bytes of a thread's Valgrind stack are unused
+extern SSizeT VGA_(stack_unused)(ThreadId tid);
+
+// Allocates a stack for the first thread, then runs it,
+// as if the thread had been set up by clone()
+extern void VGP_(main_thread_wrapper_NORETURN)(ThreadId tid);
+
 extern HChar* VG_(resolve_filename_nodup)(Int fd);
 extern HChar* VG_(resolve_filename)(Int fd);