Bug 152 - implement approaches to manage memory for incoming data
Summary: implement approaches to manage memory for incoming data
Status: ASSIGNED
Alias: None
Product: TAO
Classification: Unclassified
Component: ORB (show other bugs)
Version: 1.0
Hardware: All All
: P3 enhancement
Assignee: DOC Center Support List (internal)
URL:
Depends on:
Blocks:
 
Reported: 1999-07-26 18:09 CDT by Ossama Othman
Modified: 1999-08-03 12:21 CDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Ossama Othman 1999-07-26 18:09:54 CDT
Once the memory for incoming data is taken from an allocator we can implement
different approaches to manage that memory:

- The allocator is global, allowing applications to keep the incoming buffer
even after the upcall has finished.
- The allocator is TSS, giving maximum performance for applications that do not
wish to preserve the buffer after the upcall.
- The allocator is a TSS cache for a global memory pool, this tries to strike a
balance, by practically eliminating the locking on each allocator/deallocation.
Some strategy is required to return the memory to the global pool, consider, for
example, an application that will always allocate memory from one thread and
deallocate it in another thread.
Comment 1 Carlos O'Ryan 1999-08-03 12:21:59 CDT
Another valid enhancement, probably to be implemented over the next year.