- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Enabling quadrant 3 for 32 bit IPF binary
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-12-2006 03:16 AM
10-12-2006 03:16 AM
chatr +q3p
From some documets we found that:
1. The binary should be complied with -N option.
2. Then "chatr +as
But after compiling with -N option, I am not able to execute the binary at all.
From aCC manpage:
------------------------------------
-N Cause the output file from the linker to be marked as
unshareable. For details and system defaults, see
ld(1).
------------------------------------
Is the binary becoming unshareable as the manpage of aCC suggests?
It would be really great if you could let us know "How to enable quadrant 3 for 32 bit IPF binary".
Thanks and regards,
Anshu
PS: Basically I am looking for "chatr +q3p
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2006 06:28 AM
10-12-2006 06:28 AM
Solutioncc -Ae -Wl,-N -o mallocmax mallocmax.c
chatr +q3p enable mallocmax
and your executable should work OK. However, there is another add ress model(I am assuming you're running 11.23) called MPAS which gives you access to all the 32bit quadrants and allows as much as 3800 megs for local storage:
cc -Ae -Wl,+as,mpas -o mallocmax mallocmax.c
That program will also work quite well for maximum RAM usage in the limited 32bit model. Note that maxdsiz will have to be 3900megs (and maxdsiz_64 larger than maxdsiz).
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2006 01:06 PM
10-12-2006 01:06 PM
Re: Enabling quadrant 3 for 32 bit IPF binary
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2006 07:28 PM
10-15-2006 07:28 PM
Re: Enabling quadrant 3 for 32 bit IPF binary
aCC -Ae -N -Wl,+as,mpas -o mallocmax mallocmax.C
Thanks a lot for your help.
Cheers,
Anupam Anshu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2006 07:29 PM
10-15-2006 07:29 PM
Re: Enabling quadrant 3 for 32 bit IPF binary
Cheers,
Anshu