diff options
author | Andrew Clayton <a.clayton@nginx.com> | 2022-12-01 21:05:39 +0000 |
---|---|---|
committer | Andrew Clayton <a.clayton@nginx.com> | 2022-12-01 21:05:39 +0000 |
commit | 7d7b5a977c4e461976422c59f4594280b05dde0a (patch) | |
tree | 768238fdc903b94471ec91d240f7926134a35bfb /test/test_php_targets.py | |
parent | 58812e74d3a0ab14b528933e1953ae28c8f9f627 (diff) | |
download | unit-7d7b5a977c4e461976422c59f4594280b05dde0a.tar.gz unit-7d7b5a977c4e461976422c59f4594280b05dde0a.tar.bz2 |
Remove the nxt_getpid() alias.
Since the previous commit, nxt_getpid() is only ever aliased to
getpid(2).
nxt_getpid() was only used once in the code, while there are multiple
direct uses of getpid(2)
$ grep -r "getpid()" src/
src/nxt_unit.c: nxt_unit_pid = getpid();
src/nxt_process.c: nxt_pid = nxt_getpid();
src/nxt_process.c: nxt_pid = getpid();
src/nxt_lib.c: nxt_pid = getpid();
src/nxt_process.h:#define nxt_getpid() \
src/nxt_process.h:#define nxt_getpid() \
src/nxt_process.h: getpid()
Just remove it and convert the _single_ instance of nxt_getpid() to
getpid(2).
Reviewed-by: Alejandro Colomar <alx@nginx.com>
Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
Diffstat (limited to 'test/test_php_targets.py')
0 files changed, 0 insertions, 0 deletions