Move functions declared in private/system/system_info.h out of the public namespace.

* prepend private functions get_system_info_etc(), start_watching_system() and 
  stop_watching_system() with '__'
* adjust callers accordingly


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41517 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Oliver Tappe
2011-05-15 17:02:36 +00:00
parent 22a7fe9695
commit 6a5ce30120
7 changed files with 14 additions and 14 deletions
+3 -3
View File
@@ -63,11 +63,11 @@ extern "C" {
#endif
status_t get_system_info_etc(int32 id, void* buffer, size_t bufferSize);
status_t __get_system_info_etc(int32 id, void* buffer, size_t bufferSize);
status_t start_watching_system(int32 object, uint32 flags, port_id port,
status_t __start_watching_system(int32 object, uint32 flags, port_id port,
int32 token);
status_t stop_watching_system(int32 object, uint32 flags, port_id port,
status_t __stop_watching_system(int32 object, uint32 flags, port_id port,
int32 token);