Mail Archives: djgpp-workers/2001/01/03/04:12:28
On Tue, 2 Jan 2001, I wrote:
> As DJ says, some of the info is avaiable in various low-level places
> of the library, like sbrk and __dpmi_int, but that's not bullet-proof,
> since someone may issue the relevant instructions directly in inline
> assembly.
There's also another, more painful case when hooking on the libc level
won't do: when you have nested programs. All you see inside the
library is what your program does, but not what the children do.
To solve this on the application level, you'd need to hook Int 31h and
filter the calls, like dbgcom.c does. That's painful and slow.
- Raw text -