>I'm working on a command line tool that communicates with a daemon, >using libdoor(3LIB), to retrie ve events (malloc()ed structs of >variable length) which sit on a ring buffer.
You have allocated those in the client, correct? Then you cannot free them in the server; they are mmap'ed transparently during the door call and removed when the door call is done. Casper _______________________________________________ opensolaris-code mailing list [email protected] http://mail.opensolaris.org/mailman/listinfo/opensolaris-code
