diff options
author | Jeremy Allison <jra@samba.org> | 2000-05-02 02:23:41 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-05-02 02:23:41 +0000 |
commit | 693ffb8466ada58ecc59fde754ba79fc6f51528d (patch) | |
tree | 639fae54b3d874aae78e5732aef20f52de5b60bf /source3/client/smbmount.c | |
parent | 830a9e571eee5330097376e94af7dc0f2d5f2f02 (diff) | |
download | samba-693ffb8466ada58ecc59fde754ba79fc6f51528d.tar.gz samba-693ffb8466ada58ecc59fde754ba79fc6f51528d.tar.xz samba-693ffb8466ada58ecc59fde754ba79fc6f51528d.zip |
Added sys_fork() and sys_getpid() functions to stop the overhead
of doing a system call every time we want to just get our pid.
Jeremy.
(This used to be commit 148628b616b5c29ba6340d65fc3ddbcabba6e67a)
Diffstat (limited to 'source3/client/smbmount.c')
-rw-r--r-- | source3/client/smbmount.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/client/smbmount.c b/source3/client/smbmount.c index 18af824c1fd..ec3f32bd366 100644 --- a/source3/client/smbmount.c +++ b/source3/client/smbmount.c @@ -72,7 +72,7 @@ static void daemonize(void) signal( SIGTERM, exit_parent ); - if ((child_pid = fork()) < 0) { + if ((child_pid = sys_fork()) < 0) { fprintf(stderr,"could not fork\n"); } @@ -437,7 +437,7 @@ static void init_mount(void) args[i++] = xstrdup(tmp); } - if (fork() == 0) { + if (sys_fork() == 0) { if (file_exist(BINDIR "/smbmnt", NULL)) { execv(BINDIR "/smbmnt", args); fprintf(stderr,"execv of %s failed. Error was %s.", BINDIR "/smbmnt", strerror(errno)); |