Changeset 33540 in vbox for trunk/src/VBox/Runtime/r3/linux
- Timestamp:
- Oct 28, 2010 9:27:05 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 67140
- Location:
- trunk/src/VBox/Runtime/r3/linux
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/linux/fileaio-linux.cpp
r29111 r33540 204 204 /** Return code the request completed with. */ 205 205 int Rc; 206 /** Number of bytes actually tra snfered. */206 /** Number of bytes actually transferred. */ 207 207 size_t cbTransfered; 208 208 /** Completion context we are assigned to. */ … … 562 562 563 563 /* 564 * Va ildate requests and associate with the context.564 * Validate requests and associate with the context. 565 565 */ 566 566 while (i-- > 0) … … 605 605 * Revert every request into the prepared state except 606 606 * the first one which will switch to completed. 607 * Another reason could be insuffi dient ressources.607 * Another reason could be insufficient resources. 608 608 */ 609 609 i = cReqs; -
trunk/src/VBox/Runtime/r3/linux/mp-linux.cpp
r28863 r33540 41 41 42 42 /** 43 * Internal worker that determin s the max possible CPU count.43 * Internal worker that determines the max possible CPU count. 44 44 * 45 45 * @returns Max cpus. -
trunk/src/VBox/Runtime/r3/linux/sched-linux.cpp
r28800 r33540 28 28 * !WARNING! 29 29 * 30 * When talking about lowering and raising priority, we do *NOT* refer eto30 * When talking about lowering and raising priority, we do *NOT* refer to 31 31 * the common direction priority values takes on unix systems (lower means 32 32 * higher). So, when we raise the priority of a linux thread the nice … … 167 167 * All threads have the same priority. 168 168 * 169 * This is typically cho osen when we find that we can't raise the priority169 * This is typically chosen when we find that we can't raise the priority 170 170 * to the process default of a thread created by a low priority thread. 171 171 */ -
trunk/src/VBox/Runtime/r3/linux/semevent-linux.cpp
r33269 r33540 34 34 * contain the bug fix. 35 35 * 36 * The external refer nce to epoll_pwait is a hack which prevents that we link36 * The external reference to epoll_pwait is a hack which prevents that we link 37 37 * against glibc < 2.6. 38 38 */ -
trunk/src/VBox/Runtime/r3/linux/semeventmulti-linux.cpp
r32968 r33540 36 36 * the bug fix. 37 37 * 38 * The external refer nce to epoll_pwait is a hack which prevents that we link38 * The external reference to epoll_pwait is a hack which prevents that we link 39 39 * against glibc < 2.6. 40 40 */ -
trunk/src/VBox/Runtime/r3/linux/sysfs.cpp
r28800 r33540 51 51 52 52 /** 53 * Constructs the path of a sysfs file from the format param aters passed,53 * Constructs the path of a sysfs file from the format parameters passed, 54 54 * prepending a prefix if the path is relative. 55 55 * … … 91 91 92 92 /** 93 * Constructs the path of a sysfs file from the format param aters passed,93 * Constructs the path of a sysfs file from the format parameters passed, 94 94 * prepending a prefix if the path is relative. 95 95 * … … 118 118 119 119 /** 120 * Constructs the path of a sysfs file from the format param aters passed,120 * Constructs the path of a sysfs file from the format parameters passed, 121 121 * prepending "/sys/" if the path is relative. 122 122 *
Note:
See TracChangeset
for help on using the changeset viewer.