URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [branches/] [oc/] [gdb-5.0/] [mmalloc/] [TODO] - Rev 1765
Compare with Previous | Blame | View Log
Things that still need attention:* Make implementation changes necessary to allow multiple processesto use the mmalloc managed region simultaneously. This requires,at the minimum, some sort of cooperative locking that ensures thatonly one process at a time is changing any of the mmalloc manageddata structures (its ok for the mmalloc managed data regions to bechanged at any time since we don't care about their contents).* In order to support multiple processes using the mmalloc managedregion, the malloc descriptor needs to be broken into two parts,one part which is specific to the given process and is maintainedseparately on a per process basis, and another part which is commonto all processes. As an example, the file descriptor is specificto a given process, as are the morecore and abortfunc pointers.However magic[], the version number, the flags field, etc arecommon to all processes.
