Errno_map.c
Marcus <[email protected]>
| Newsgroups | gmane.comp.gnu.dotgnu.developer |
|---|---|
| Message-ID | <[email protected]> |
Has someone been hacking on whatever script generates errno_map.c? I'm asking
because the file defines errno_map.c twice, and the definition that gets
picked up looks like this:
static int const errnoMapTable[] = {
0,
IL_ERRNO_EPERM,
IL_ERRNO_EPERM,
IL_ERRNO_EPERM,
IL_ERRNO_EPERM,
IL_ERRNO_EPERM,
IL_ERRNO_EPERM,
IL_ERRNO_EPERM,
IL_ERRNO_EPERM,
IL_ERRNO_EPERM,
IL_ERRNO_EPERM,
IL_ERRNO_EPERM,
IL_ERRNO_EPERM,
IL_ERRNO_EPERM,
IL_ERRNO_EPERM,
IL_ERRNO_EPERM,
IL_ERRNO_EPERM, ...
So methods in Pnet that depend on these values fail. For example, this causes
things like File.Delete("abc") to throw an exception when the file does not
exist.