Re: Mainframe C Link Step Error - using pthread (POSIX)

2011-05-30 Thread Jan MOEYERSONS
On Fri, 27 May 2011 12:10:33 -0700, John Weber j...@fiteq.com wrote: Here is the link step. Thanks! 77 //LKED EXEC PGM=HEWL,COND=(4,LT,COMPILE), 78 //REGION=LREGSIZ,PARM='LPARM' 79 //SYSLIB DD DSNAME=TCPIP.SEZACMTX,DISP=SHR 80 // DD

Re: Mainframe C Link Step Error - using pthread (POSIX)

2011-05-30 Thread David Crayford
LE pthread functions are mapped to names starting with @@PT*. You can see this by browing pthread.h and checking the #pragma map(pthread, ... ) statements. I would suggest that you are calling a pthread function that is not declared. Because you're using the pre-linker you should check to

Mainframe C Link Step Error - using pthread (POSIX)

2011-05-27 Thread John Weber
We are receiving an 8 on our linking of a C module on the mainframe (z/os 1.7) The error is: IEW2456E 9207 SYMBOL PTHREAD@ UNRESOLVED. Does a library need to be included in our link's syslib? Thank you! -- For IBM-MAIN

Re: Mainframe C Link Step Error - using pthread (POSIX)

2011-05-27 Thread Lizette Koehler
We are receiving an 8 on our linking of a C module on the mainframe (z/os 1.7) The error is: IEW2456E 9207 SYMBOL PTHREAD@ UNRESOLVED. Does a library need to be included in our link's syslib? Thank you! Can you post your JCL for your LKED step? Lizette

Re: Mainframe C Link Step Error - using pthread (POSIX)

2011-05-27 Thread John Weber
Of Lizette Koehler Sent: Friday, May 27, 2011 12:05 PM To: IBM-MAIN@bama.ua.edu Subject: Re: Mainframe C Link Step Error - using pthread (POSIX) We are receiving an 8 on our linking of a C module on the mainframe (z/os 1.7) The error is: IEW2456E 9207 SYMBOL PTHREAD@ UNRESOLVED. Does a library need

Re: Mainframe C Link Step Error - using pthread (POSIX)

2011-05-27 Thread Staller, Allan
The IEW2456E says module not in SYSLIB/SYSLIN. I checked the C and LE libraries and could not find PTHREAD@ (lots of refs in the COMPILER/RUN TIME LIB docs). This can most likely be fixed in one of 2 ways depending on what is desired. If you really want PTHREAD@ hard-linked in you LMOD, I

Re: Mainframe C Link Step Error - using pthread (POSIX)

2011-05-27 Thread John Weber
-MAIN@bama.ua.edu] On Behalf Of Staller, Allan Sent: Friday, May 27, 2011 1:25 PM To: IBM-MAIN@bama.ua.edu Subject: Re: Mainframe C Link Step Error - using pthread (POSIX) The IEW2456E says module not in SYSLIB/SYSLIN. I checked the C and LE libraries and could not find PTHREAD@ (lots of refs