* (all files)
* stripped svn header
* minor cleanups
; use following command to find out the history of files:
git log
git log --follow
git blame
git annotate
40 lines
1.0 KiB
Plaintext
40 lines
1.0 KiB
Plaintext
/*
|
|
* Harbour Project source code:
|
|
*
|
|
* Copyright 2011 Tamas TEVESZ <ice@extreme.hu>
|
|
* www - http://harbour-project.org
|
|
*
|
|
*/
|
|
|
|
#require "hbunix"
|
|
|
|
REQUEST HB_GT_CGI_DEFAULT
|
|
|
|
PROCEDURE Main()
|
|
|
|
LOCAL cLogFile, cLogText
|
|
|
|
cLogFile := hb_ps() + CurDir() + hb_ps() + hb_FNameExtSet( __FILE__, ".txt" )
|
|
|
|
? hb_StrFormat( "Parent(%d) launching child... ", posix_getpid() )
|
|
|
|
IF unix_daemon( 0, 0 ) == -1
|
|
? hb_StrFormat( "failed with errno=%d", posix_errno() )
|
|
ErrorLevel( 1 )
|
|
ELSE
|
|
IF hb_FileExists( cLogFile )
|
|
FErase( cLogFile )
|
|
ENDIF
|
|
|
|
? "***" + hb_eol() + "* If you see this, something is b0rked" + hb_eol() + "***"
|
|
|
|
cLogText := hb_StrFormat( "Hello, this is the daemon child(%d) writing.", posix_getpid() ) + hb_eol()
|
|
cLogText += hb_StrFormat( "I am currenty residing in %s and ", hb_ps() + CurDir() ) + hb_eol()
|
|
cLogText += hb_StrFormat( "am writing this message to %s", cLogFile ) + hb_eol()
|
|
cLogText += "Good bye now." + hb_eol()
|
|
|
|
hb_MemoWrit( cLogFile, cLogText )
|
|
ENDIF
|
|
|
|
RETURN
|