Hi there,
I am attempting to write some code that is Multi-Threaded.
If I have a function named Thread1 say that has the line:
Call READF@(ptrDataP, i2HandleP, iNumBytesToReadP, iNumBytesReadP, i2ErrorL)
and another function named Thread2 say that has the line:
Call READF@(ptrDataP, i2HandleP, iNumBytesToReadP, iNumBytesReadP, i2ErrorL)
Where ptrDataP, i2HandleP, iNumBytesToReadP, iNumBytesReadP, i2ErrorL are different memory locations and with i2HandleP different handles for both, then if a Thread calls Thread1 and a different Thread calls Thread2, will there be a conflict?
I ask this because READF@ might be the same code called by each Thread and/or might not be Thread-safe and/or using 'locks'
I also need to know this for:
CURDIR@ MKDIR@ FILE_SIZE@ OPENF@ WRITEF@ READF@ CLOSEF@ Inquire
Regards Marz