Changeset 97646 in vbox for trunk/include/iprt
- Timestamp:
- Nov 22, 2022 1:02:48 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 154697
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mangling.h
r96864 r97646 1852 1852 # define RTProcSetPriority RT_MANGLER(RTProcSetPriority) 1853 1853 # define RTProcShortName RT_MANGLER(RTProcShortName) 1854 # define RTProcSignalName RT_MANGLER(RTProcSignalName) 1854 1855 # define RTProcTerminate RT_MANGLER(RTProcTerminate) 1855 1856 # define RTProcWait RT_MANGLER(RTProcWait) -
trunk/include/iprt/process.h
r96407 r97646 115 115 #endif 116 116 117 118 /** 119 * Translate a signal number to a short name on the form SIGXXXX. 120 * 121 * If the signal is not known, it will be formatted as a number into one of 122 * several static buffers. This means that there could be concurrency issues if 123 * this suddenly happens on multiple threads, though that is unlikely. 124 * 125 * @returns Readonly string naming the signal. 126 * @param iSignal The signal to name. 127 */ 128 RTDECL(const char *) RTProcSignalName(int iSignal); 117 129 118 130 #ifdef IN_RING3
Note:
See TracChangeset
for help on using the changeset viewer.