Re: ifile lexing question
| Newsgroups | gmane.mail.ifile.general |
|---|---|
| Message-ID | <[email protected]> |
[email protected] writes: > I'm not sure there's a clean way to maintain the internal, dynamic > data structure using mmap. Not that this is necessarily a good idea, but you could use System V shared memory segments for this - they're mappable, and persistent across program starts and stops. See shmget(2) and shmat(2). - Nathan