[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: Unique ID for PASOE ABL session?

  • Thread starter Thread starter gus bjorklund
  • Start date Start date
Status
Not open for further replies.
G

gus bjorklund

Guest
to get the process id on linux, set up link to system call: procedure getpid external "/usr/lib/glibc.so" cdecl: define return parameter pid as long no-undo. end procedure. /* then to use it: */ def var p as integer no-undo. p = getpid (). on windoze: procedure GetCurrentProcessId external "kernel32.dll": define return parameter pid as long. end procedure. and: def var p as integer no-undo. run GetCurrentProcessId (output p).

Continue reading...
 
Status
Not open for further replies.
Back
Top