mirror of
https://github.com/postgres/postgres.git
synced 2025-07-23 03:21:12 +03:00
Remove tabs after spaces in C comments
This was not changed in HEAD, but will be done later as part of a pgindent run. Future pgindent runs will also do this. Report by Tom Lane Backpatch through all supported branches, but not HEAD
This commit is contained in:
@ -28,12 +28,12 @@
|
||||
* Additional confusion exists because many operating systems that
|
||||
* use pthread_setspecific/pthread_getspecific() also have *_r versions
|
||||
* of standard library functions for compatibility with operating systems
|
||||
* that require them. However, internally, these *_r functions merely
|
||||
* that require them. However, internally, these *_r functions merely
|
||||
* call the thread-safe standard library functions.
|
||||
*
|
||||
* For example, BSD/OS 4.3 uses Bind 8.2.3 for getpwuid(). Internally,
|
||||
* getpwuid() calls pthread_setspecific/pthread_getspecific() to return
|
||||
* static data to the caller in a thread-safe manner. However, BSD/OS
|
||||
* static data to the caller in a thread-safe manner. However, BSD/OS
|
||||
* also has getpwuid_r(), which merely calls getpwuid() and shifts
|
||||
* around the arguments to match the getpwuid_r() function declaration.
|
||||
* Therefore, while BSD/OS has getpwuid_r(), it isn't required. It also
|
||||
|
Reference in New Issue
Block a user