Changeset 13837 in vbox for trunk/src/VBox/Additions/WINNT/VBoxGINA
- Timestamp:
- Nov 5, 2008 2:54:02 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxGINA/Helper.cpp
r13835 r13837 176 176 if (RT_FAILURE(rc)) 177 177 { 178 Log(("VBoxGINA::credentialsPollerCreate: failed to create thread, rc = % Vrc\n", rc));178 Log(("VBoxGINA::credentialsPollerCreate: failed to create thread, rc = %Rrc\n", rc)); 179 179 return false; 180 180 } … … 198 198 /* wait until the thread has terminated */ 199 199 rc = RTThreadWait(gThreadPoller, RT_INDEFINITE_WAIT, NULL); 200 Log(("VBoxGINA::credentialsPollerTermiante: thread has (probably) terminated (rc = % Vrc)\n", rc));200 Log(("VBoxGINA::credentialsPollerTermiante: thread has (probably) terminated (rc = %Rrc)\n", rc)); 201 201 } 202 202 else 203 203 { 204 204 /* failed to signal the thread - very unlikely - so no point in waiting long. */ 205 Log(("VBoxGINA::credentialsPollerTermiante: failed to signal semaphore, rc = % Vrc\n", rc));205 Log(("VBoxGINA::credentialsPollerTermiante: failed to signal semaphore, rc = %Rrc\n", rc)); 206 206 rc = RTThreadWait(gThreadPoller, 100, NULL); 207 Log(("VBoxGINA::credentialsPollerTermiante: thread has terminated? wait rc = % Vrc\n", rc));207 Log(("VBoxGINA::credentialsPollerTermiante: thread has terminated? wait rc = %Rrc\n", rc)); 208 208 } 209 209 /* now cleanup */
Note:
See TracChangeset
for help on using the changeset viewer.