Changeset 39515 in vbox for trunk/src/VBox/Additions/common/VBoxService
- Timestamp:
- Dec 2, 2011 1:41:07 PM (13 years ago)
- Location:
- trunk/src/VBox/Additions/common/VBoxService
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControl.cpp
r39437 r39515 46 46 * the maximum number of processes is unlimited. */ 47 47 static uint32_t g_GuestControlProcsMaxKept = 25; 48 /** List of guest control threads . */49 static RTLIST NODEg_GuestControlThreads;48 /** List of guest control threads (VBOXSERVICECTRLTHREAD). */ 49 static RTLISTANCHOR g_GuestControlThreads; 50 50 /** Critical section protecting g_GuestControlExecThreads. */ 51 51 static RTCRITSECT g_GuestControlThreadsCritSect; … … 301 301 { 302 302 /** @todo Put the following params into a struct! */ 303 RTLISTNODE *pThreadNode;303 PRTLISTNODE pThreadNode; 304 304 rc = VBoxServiceControlThreadStart(idClient, uContextID, 305 305 szCmd, uFlags, szArgs, cArgs, -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceInternal.h
r39427 r39515 253 253 { 254 254 /** The client ID for HGCM communication. */ 255 uint32_t uClientID;255 uint32_t uClientID; 256 256 /** Head in a list of VBOXSERVICEVEPROPCACHEENTRY nodes. */ 257 RTLIST NODENodeHead;257 RTLISTANCHOR NodeHead; 258 258 /** Critical section for thread-safe use. */ 259 RTCRITSECT CritSect;259 RTCRITSECT CritSect; 260 260 } VBOXSERVICEVEPROPCACHE; 261 261 /** Pointer to a guest property cache. */ -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceToolBox.cpp
r39385 r39515 339 339 340 340 /* Init directory list. */ 341 RTLIST NODEinputList;341 RTLISTANCHOR inputList; 342 342 RTListInit(&inputList); 343 343 … … 645 645 } 646 646 647 RTLIST NODEdirList;647 RTLISTANCHOR dirList; 648 648 RTListInit(&dirList); 649 649 … … 778 778 779 779 /* Init file list. */ 780 RTLIST NODEfileList;780 RTLISTANCHOR fileList; 781 781 RTListInit(&fileList); 782 782 … … 1041 1041 1042 1042 /* Init file list. */ 1043 RTLIST NODEfileList;1043 RTLISTANCHOR fileList; 1044 1044 RTListInit(&fileList); 1045 1045
Note:
See TracChangeset
for help on using the changeset viewer.