• Still alive? Memory. edm2?

    From Iron Spring Software@21:1/5 to All on Mon Feb 3 14:19:04 2025
    1. Is anyone still reading this NG?

    2. I was curious about OS/2 memory allocation (DosAllocMem), and too
    lazy to see if the information I want is in the redbooks, which probably
    don't reflect the current status of ArcaOS anyway.

    At any rate I recalled that each call to DosAlloc allocates 64K (65536)
    bytes, and my question was whether or not there was any overhead in the allocated memory. I write a Q+D program that made two allocations of one
    byte each, followed by two allocations of 64K, and in all cases the
    addresses of the allocated memory were 64K apart, so no overhead.

    [probably y'all knew this already]

    3. I was going to make a note on the talk page for DosAllocMem page in
    the edm2 wiki to help out any other clueless people who might happen
    along, but either talk isn't implemented or I need to sign on because I
    got a message something like "unable to handle this request" when I
    clicked talk.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Peter Flass@21:1/5 to Dave Yeo on Tue Feb 4 06:09:25 2025
    Dave Yeo <dave.r.yeo@gmail.com> wrote:
    Iron Spring Software wrote:
    1. Is anyone still reading this NG?

    At least one of us.


    2. I was curious about OS/2 memory allocation (DosAllocMem), and too
    lazy to see if the information I want is in the redbooks, which probably
    don't reflect the current status of ArcaOS anyway.

    ArcaOS is built on CP2 (Warp 4.52), so an up to date redbook would work. Easier to use ANPM to install the os2tk45 documentation, forget the
    exact package name and look at cp1.inf.


    At any rate I recalled that each call to DosAlloc allocates 64K (65536)
    bytes, and my question was whether or not there was any overhead in the
    allocated memory. I write a Q+D program that made two allocations of one
    byte each, followed by two allocations of 64K, and in all cases the
    addresses of the allocated memory were 64K apart, so no overhead.

    Before Warp v3, DosAlloc allocated 4kb blocks. Also not sure if
    allocating from high memory (objany) follows the same rule.
    From the documentation,
    ...
    Note: DosAllocMem and DosAllocSharedMem both allocate a block of memory
    of the size requested rounded up to the nearest page. On OS/2 Warp, the system allocates a 64K object without attributes on every allocation.

    For example, for a DosAllocMem call with a size of 1, the system
    allocates a 4096-byte block of committed memory plus 61440 bytes without attributes.
    ...

    [probably y'all knew this already]

    3. I was going to make a note on the talk page for DosAllocMem page in
    the edm2 wiki to help out any other clueless people who might happen
    along, but either talk isn't implemented or I need to sign on because I
    got a message something like "unable to handle this request" when I
    clicked talk.

    Do you mean this page, http://www.edm2.com/os2api/Dos/DosAllocMem.html I don't see a talk page, but generally you do need an account to edit edm2
    and IIRC, you have to ask Martin to set you up.
    There still might be parts not working after the server upgrade as well.
    Dave



    Thanks!

    --
    Pete

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Andi B.@21:1/5 to Iron Spring Software on Fri Feb 7 12:38:56 2025
    Iron Spring Software schrieb:
    1. Is anyone still reading this NG?

    Yes. Occasionally.


    2. I was curious about OS/2 memory allocation (DosAllocMem), and too
    lazy to see if the information I want is in the redbooks, which probably don't reflect the current status of ArcaOS anyway.

    At any rate I recalled that each call to DosAlloc allocates 64K (65536) bytes, and my question was whether or not there was any overhead in the allocated memory. I write a Q+D program that made two allocations of one
    byte each, followed by two allocations of 64K, and in all cases the
    addresses of the allocated memory were 64K apart, so no overhead.


    I also remember the 64k block since a long time. But see Daves answer
    for details.

    [probably y'all knew this already]

    3. I was going to make a note on the talk page for DosAllocMem page in
    the edm2 wiki to help out any other clueless people who might happen
    along, but either talk isn't implemented or I need to sign on because I
    got a message something like "unable to handle this request" when I
    clicked talk.

    Just checked some edm2 pages and the look very different from what I
    remember. Guess the last server/software migration didn't work well or
    is still in progress or no one has time to take care ...

    But trac and login there works.

    Andi

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Peter Flass@21:1/5 to Andi B. on Fri Feb 7 08:08:08 2025
    Andi B. <andi.b@gmx.net> wrote:
    Iron Spring Software schrieb:
    1. Is anyone still reading this NG?

    Yes. Occasionally.


    2. I was curious about OS/2 memory allocation (DosAllocMem), and too
    lazy to see if the information I want is in the redbooks, which probably
    don't reflect the current status of ArcaOS anyway.

    At any rate I recalled that each call to DosAlloc allocates 64K (65536)
    bytes, and my question was whether or not there was any overhead in the
    allocated memory. I write a Q+D program that made two allocations of one
    byte each, followed by two allocations of 64K, and in all cases the
    addresses of the allocated memory were 64K apart, so no overhead.


    I also remember the 64k block since a long time. But see Daves answer
    for details.

    [probably y'all knew this already]

    3. I was going to make a note on the talk page for DosAllocMem page in
    the edm2 wiki to help out any other clueless people who might happen
    along, but either talk isn't implemented or I need to sign on because I
    got a message something like "unable to handle this request" when I
    clicked talk.

    Just checked some edm2 pages and the look very different from what I remember. Guess the last server/software migration didn't work well or
    is still in progress or no one has time to take care ...

    But trac and login there works.

    Andi


    I rely more on edm2 than on the Redbooks.

    --
    Pete

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Steven Levine@21:1/5 to Peter_Flass@Yahoo.com on Sat Feb 8 19:46:13 2025
    On Mon, 3 Feb 2025 21:19:04 UTC, Iron Spring Software
    <Peter_Flass@Yahoo.com> wrote:

    Hi all,

    At any rate I recalled that each call to DosAlloc allocates 64K (65536) bytes,

    This is in addition to Dave's comments...

    Each call to DosAllocMem is going to allocate some amount address
    space rounded up to 64KB multiples as part of creating the memory
    object. The call may also attach some amount of physical memory in
    page size multiples to the object, depending on whether or not the
    request is for committed pages and whether or not physical is
    available at the time of the call.

    There is "overhead" for each DosAllocMem, but not in user address
    space. Each call creates a memory object and the kernel will allocate
    memory from the kernel heaps to build the records it uses the keep
    track of the object.

    The OS/2 Debugging Handbook is probably still the best reference for
    how this works. The diagrams in the "Memory Mangement Control Block
    Diagrams" panels are still accurate.

    Steven


    --
    ---------------------------------------------------------------------
    Steven Levine <steve53@earthlink.bogus.net>
    DIY/ArcaOS/Warp etc. www.scoug.com www.arcanoae.com www.warpcave.com ---------------------------------------------------------------------

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)