From c0288e0612187ecbfc4a81d071fd504ea8737b7a Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 24 Mar 2012 20:17:08 +0100 Subject: lib/util: Remove obsolete sys_getpid() and sys_fork(). The performance of these is minimal (these days) and they can return invalid results when used as part of applications that do not use sys_fork(). Autobuild-User: Jelmer Vernooij Autobuild-Date: Sat Mar 24 21:55:41 CET 2012 on sn-devel-104 --- source3/rpc_server/epmd.c | 2 +- source3/rpc_server/lsasd.c | 2 +- source3/rpc_server/rpc_handles.c | 2 +- source3/rpc_server/samr/srv_samr_chgpasswd.c | 2 +- source3/rpc_server/svcctl/srv_svcctl_nt.c | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) (limited to 'source3/rpc_server') diff --git a/source3/rpc_server/epmd.c b/source3/rpc_server/epmd.c index c28d8574c0..46b5c52bb7 100644 --- a/source3/rpc_server/epmd.c +++ b/source3/rpc_server/epmd.c @@ -146,7 +146,7 @@ void start_epmd(struct tevent_context *ev_ctx, DEBUG(1, ("Forking Endpoint Mapper Daemon\n")); - pid = sys_fork(); + pid = fork(); if (pid == -1) { DEBUG(0, ("Failed to fork Endpoint Mapper [%s], aborting ...\n", diff --git a/source3/rpc_server/lsasd.c b/source3/rpc_server/lsasd.c index ad184d89c9..6608d6ba33 100644 --- a/source3/rpc_server/lsasd.c +++ b/source3/rpc_server/lsasd.c @@ -858,7 +858,7 @@ void start_lsasd(struct tevent_context *ev_ctx, BlockSignals(true, SIGTERM); BlockSignals(true, SIGHUP); - pid = sys_fork(); + pid = fork(); if (pid == -1) { DEBUG(0, ("Failed to fork LSASD [%s], aborting ...\n", strerror(errno))); diff --git a/source3/rpc_server/rpc_handles.c b/source3/rpc_server/rpc_handles.c index f98b2355fc..d0b9777f6f 100644 --- a/source3/rpc_server/rpc_handles.c +++ b/source3/rpc_server/rpc_handles.c @@ -292,7 +292,7 @@ static struct dcesrv_handle *create_rpc_handle_internal(struct pipes_struct *p, /* something random */ SSVAL(rpc_hnd->wire_handle.uuid.node, 0, t); /* something more random */ - SIVAL(rpc_hnd->wire_handle.uuid.node, 2, sys_getpid()); + SIVAL(rpc_hnd->wire_handle.uuid.node, 2, getpid()); DLIST_ADD(p->pipe_handles->handles, rpc_hnd); p->pipe_handles->count++; diff --git a/source3/rpc_server/samr/srv_samr_chgpasswd.c b/source3/rpc_server/samr/srv_samr_chgpasswd.c index 083b048afe..1e8b14ead7 100644 --- a/source3/rpc_server/samr/srv_samr_chgpasswd.c +++ b/source3/rpc_server/samr/srv_samr_chgpasswd.c @@ -405,7 +405,7 @@ static bool chat_with_program(char *passwordprogram, const struct passwd *pass, CatchChildLeaveStatus(); - if ((pid = sys_fork()) < 0) { + if ((pid = fork()) < 0) { DEBUG(3, ("chat_with_program: Cannot fork() child for password change: %s\n", pass->pw_name)); SAFE_FREE(slavedev); close(master); diff --git a/source3/rpc_server/svcctl/srv_svcctl_nt.c b/source3/rpc_server/svcctl/srv_svcctl_nt.c index 37cfc46d58..74c55ab521 100644 --- a/source3/rpc_server/svcctl/srv_svcctl_nt.c +++ b/source3/rpc_server/svcctl/srv_svcctl_nt.c @@ -637,7 +637,7 @@ WERROR _svcctl_QueryServiceStatusEx(struct pipes_struct *p, /* Get the status of the service.. */ info->ops->service_status( info->name, &svc_stat_proc.status ); - svc_stat_proc.process_id = sys_getpid(); + svc_stat_proc.process_id = getpid(); svc_stat_proc.service_flags = 0x0; ndr_err = ndr_push_struct_blob(&blob, p->mem_ctx, &svc_stat_proc, -- cgit