summaryrefslogtreecommitdiff
path: root/src/VBox/Runtime/include/internal/process.h
diff options
context:
space:
mode:
authorFelix Geyer <debfx-pkg@fobos.de>2011-07-29 17:55:18 +0200
committerFelix Geyer <debfx-pkg@fobos.de>2011-07-29 17:55:18 +0200
commitcba113ca2826bc4814be2f69a7704c865a37d4ea (patch)
tree511123b10dd1e58e56958520534f5c50e6f570fc /src/VBox/Runtime/include/internal/process.h
parent6a16f6900dd884e07125b51c9625f6be0a1f9b70 (diff)
downloadvirtualbox-cba113ca2826bc4814be2f69a7704c865a37d4ea.tar.gz
Imported Upstream version 4.1.0-dfsgupstream/4.1.0-dfsg
Diffstat (limited to 'src/VBox/Runtime/include/internal/process.h')
-rw-r--r--src/VBox/Runtime/include/internal/process.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/VBox/Runtime/include/internal/process.h b/src/VBox/Runtime/include/internal/process.h
index 463368008..915d243af 100644
--- a/src/VBox/Runtime/include/internal/process.h
+++ b/src/VBox/Runtime/include/internal/process.h
@@ -1,4 +1,4 @@
-/* $Id: process.h $ */
+/* $Id: process.h 36555 2011-04-05 12:34:09Z vboxsync $ */
/** @file
* IPRT - Internal RTProc header.
*/
@@ -32,12 +32,13 @@
RT_C_DECLS_BEGIN
-extern RTPROCESS g_ProcessSelf;
-extern RTPROCPRIORITY g_enmProcessPriority;
-extern char g_szrtProcExePath[RTPATH_MAX];
-extern size_t g_cchrtProcExePath;
-extern size_t g_cchrtProcDir;
-extern size_t g_offrtProcName;
+extern DECLHIDDEN(RTPROCESS) g_ProcessSelf;
+extern DECLHIDDEN(RTPROCPRIORITY) g_enmProcessPriority;
+extern DECLHIDDEN(char) g_szrtProcExePath[RTPATH_MAX];
+extern DECLHIDDEN(size_t) g_cchrtProcExePath;
+extern DECLHIDDEN(size_t) g_cchrtProcDir;
+extern DECLHIDDEN(size_t) g_offrtProcName;
+extern DECLHIDDEN(bool volatile) g_frtAtExitCalled;
/**
* Validates and sets the process priority.
@@ -48,7 +49,7 @@ extern size_t g_offrtProcName;
* @param enmPriority The priority to validate and set.
* @remark Located in sched.
*/
-int rtProcNativeSetPriority(RTPROCPRIORITY enmPriority);
+DECLHIDDEN(int) rtProcNativeSetPriority(RTPROCPRIORITY enmPriority);
/**
* Determines the full path to the executable image.