1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

rename gids_sz to num_gids

This commit is contained in:
Joe Dollard 2016-03-14 20:42:16 -04:00 committed by Jameson Nash
parent efeaeb242d
commit 83636f6731
3 changed files with 4 additions and 4 deletions

View File

@ -100,7 +100,7 @@ Data types
/*
* Set the child process' supplementary group ids. The group ids are supplied
* in the 'gids' field in the options struct, and the number of groups is
* specified in the 'gids_sz' field. This does not work on windows;
* specified in the 'num_gids' field. This does not work on windows;
* setting this flag will cause uv_spawn() to fail.
*/
UV_PROCESS_SETGROUPS = (1 << 8)

View File

@ -1219,7 +1219,7 @@ enum uv_process_flags {
/*
* Set the child process' supplementary group ids. The group ids are supplied
* in the 'gids' field in the options struct, and the number of groups is
* specified in the 'gids_sz' field. This does not work on windows;
* specified in the 'num_gids' field. This does not work on windows;
* setting this flag will cause uv_spawn() to fail on windows.
*/
UV_PROCESS_SETGROUPS = (1 << 9)

View File

@ -1517,7 +1517,7 @@ TEST_IMPL(spawn_setgids) {
ASSERT(pw != NULL);
gids[0] = pw->pw_gid;
options.gids = gids;
options.gids_sz = 1;
options.num_gids = 1;
options.flags = UV_PROCESS_SETGROUPS;
@ -1654,7 +1654,7 @@ TEST_IMPL(spawn_setgids_fails) {
options.flags |= UV_PROCESS_SETGROUPS;
options.gids = gids;
options.gids_sz = 1;
options.num_gids = 1;
r = uv_spawn(uv_default_loop(), &process, &options);
ASSERT(r == UV_EPERM);