Files
harbour-core/tests/mt/mttest02.prg
vszakats a4a357a18b 2013-03-15 11:12 UTC+0100 Viktor Szakats (harbour syenar.net)
* /harbour/* -> /*
    * moved whole Harbour source tree one level up to
      avoid single 'harbour' top dir
2013-03-15 11:13:30 +01:00

70 lines
1.3 KiB
Plaintext

/*
* $Id$
*/
/*
* Harbour Project source code:
* demonstration/test code for using QUIT commands and ALWAYS statements
* execution. Child thread uses QUIT before main one.
*
* Copyright 2008 Przemyslaw Czerpak <druzus / at / priv.onet.pl>
* www - http://harbour-project.org
*
*/
#ifdef __XHARBOUR__
#xtranslate hb_threadStart( <x,...> ) => StartThread( <x> )
#xtranslate hb_threadJoin( <x,...> ) => JoinThread( <x> )
#command begin sequence => try
#command always => finally
#endif
proc main()
local thID, i
? Version()
? "Main start"
thID := hb_threadStart( @thFunc(), "A", "B", "C" )
? "Thread ID:", thID
? "==================="
?
begin sequence
for i := 1 to 10
?? "M"
hb_idleSleep( 0.050 )
next
? "==================="
? "Main QUIT"
quit
always
? "Main ALWAYS section"
?
endsequence
? "End of main"
return
proc thFunc( ... )
local i
? "Thread begin"
? "Parameters:"
aeval( hb_aParams(), {| x | qqout( "", x ) } )
?
begin sequence
for i := 1 to 10
?? "t"
hb_idleSleep( 0.030 )
if i == 5
? "Thread QUIT"
quit
endif
next
always
? "Thread ALWAYS section"
?
endsequence
? "Thread end"
?
return
exit proc p
? "I'm EXIT procedure"