- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HP/UX 11.X memory reuse
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 02:50 AM
10-22-2004 02:50 AM
HP/UX 11.X memory reuse
Thanks,
Randy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 03:07 AM
10-22-2004 03:07 AM
Re: HP/UX 11.X memory reuse
Whether or not there is a specific erase of old memory, its volatile and will be re-allocated withing milliseconds.
I don't think this is a concern.
I think the allocation process of most programs is going to clear any values.
I also bet(nothing, but principle) that when a process gives up memory, its cleaned up.
I do however think it would be very interesting to test this.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 06:58 AM
10-22-2004 06:58 AM
Re: HP/UX 11.X memory reuse
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 07:03 AM
10-22-2004 07:03 AM
Re: HP/UX 11.X memory reuse
http://www.hp.com/products1/unix/operating/infolibrary/whitepapers/hpux11isecuritywp.pdf
It states in section 3.2.7 that HP-UX meets the "Object Reuse" requirement.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2004 12:59 AM
10-25-2004 12:59 AM
Re: HP/UX 11.X memory reuse
Memory from an exited process that is reallocated to another process will be initialized such that data does not leak BETWEEN processes. WITHIN a single process, memory that is reallocated (such as free() followed by malloc())
is NOT guaranteed to be initialized. It is up to individual programs to deal with that case, such as by using calloc instead of malloc.
The specific details get a bit messy because of some optimizations in the process, but with HP-UX you should never inherit junk from some unrelated process. If you ever do, please file a high severity defect report.