On Wed, 2 Jun 2004, Markus Bonet wrote:

Don't know if it will be of much help, but here is some information on the
errors that are occurring.

> msem_init(0x40082420, MSEM_UNLOCKED)
> ..................................................... ERR#22 EINVAL

This method is trying to allocate and initialize a semaphore. The error
value implies the following.

  sem (first arg) points to an msemaphore structure that is not located
  in a mapped region created by mmap() and with read and write access,
  or initial_value (second arg) is not valid.

> munmap(0x40082420, 28672)
> ................................................................ ERR#22
> EINVAL

This method is trying to unmap a range of pages. The error value implies
the following.

  The addr argument (first arg) is not a multiple of the page size as
  returned by sysconf().


In the snippet you sent, I didn't see any attempt to set up the mapping
(i.e. mmap) these other two calls presumably rely on. Not sure if that
just got cut off or is actually tied to the problem.


Jim


-------------------------------------------------------
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
_______________________________________________
ht://Dig general mailing list: <[EMAIL PROTECTED]>
ht://Dig FAQ: http://htdig.sourceforge.net/FAQ.html
List information (subscribe/unsubscribe, etc.)
https://lists.sourceforge.net/lists/listinfo/htdig-general

Reply via email to