Files
rtems/cpukit/libcsupport/src
Chris Johns eb649786c8 2009-10-08 Chris Johns <chrisj@rtems.org>
* Makefile.am, preinstall.am: Added statvfs.h.
        * libcsupport/Makefile.am: Add statvfs.c.
        * libcsupport/include/sys/statvfs.h, libcsupport/src/statvfs.c:
        New.
        * libcsupport/include/rtems/libio.h: Add a file system handler for
        the statvfs call.
        * libfs/src/devfs/devfs_init.c, libfs/src/dosfs/msdos_init.c,
        libfs/src/imfs/imfs_init.c, libfs/src/nfsclient/src/nfs.c: Set the
        statvfs handler to NULL.
        * include/rtems/fs.h: Add a second node access field for the RFS
        file system to hold a directory offset while the existing field
        holds the inode number. This save a rescan of the directory when
        working with directories.
        * libblock/include/rtems/bdbuf.h: Added references and user fields
        to the buffer descriptor.
        * libblock/src/bdbuf.c: Added dynamic buffer support for different
        block sizes. Fixed a number of bugs.
        * libblock/src/blkdev.c: Release the disk device on an error.
        * libblock/src/diskdevs.c: Set the block size to the media block
        size during initialisation of the disk device.
        * libblock/src/flashdisk.c, libblock/src/nvdisk.c,
        libblock/src/ramdisk.c: Updated the drivers to handle variable
        block sizes.
        * libfs/src/dosfs/fat.c, libfs/src/dosfs/fat.h: Release any
        buffers when an error occurs. The FAT buffer layer hangs onto a
        single buffer while mounted. This should be fixed.
        * sapi/inline/rtems/chain.inl: Added rtems_chain_set_off_chain,
        rtems_chain_is_node_off_chain, and rtems_chain_previous.
        * score/inline/rtems/score/chain.inl: Added _Chain_Set_off_chain,
        and _Chain_Is_node_off_chain.
        * libmisc/shell/main_ln.c, libmisc/shell/main_mknod.c,
        libmisc/shell/mknod-pack_dev.c, libmisc/shell/mknod-pack_dev.h:
        New shell commands.
        * libmisc/Makefile.am, libmisc/shell/shellconfig.h: Added ln and
        mknod commands.
        * libmisc/shell/hexdump-display.c: Fixed the reopen bug which
        showed up as a free with a bad pointer.
        * libmisc/shell/main_mount.c: List the user adding file system
        when listing the available file systems to mount.
        * libmisc/shell/utils-cp.c: Remove the fixed static copy buffer
        and use a large dynamic buffer.
        * score/inline/rtems/score/address.inl, score/src/coremsgsubmit.c,
        score/src/objectallocate.c, score/src/objectfree.c: Remove
        warnings.
2009-10-08 07:07:36 +00:00
..
2009-09-30 05:51:18 +00:00
2009-09-30 06:15:39 +00:00
2009-09-30 05:15:00 +00:00
2009-09-30 05:15:00 +00:00
2009-09-30 06:15:39 +00:00
2009-09-30 08:20:32 +00:00
2009-09-30 06:15:39 +00:00
2008-12-05 06:44:40 +00:00
2009-03-10 07:12:50 +00:00
2009-01-05 14:10:21 +00:00
2009-09-30 08:20:32 +00:00
2009-09-30 08:20:32 +00:00
2008-12-05 06:44:40 +00:00
2009-09-30 04:46:31 +00:00
2009-09-30 08:20:32 +00:00
2009-09-30 08:20:32 +00:00
2008-12-05 06:44:40 +00:00
2009-09-30 08:20:32 +00:00
2009-09-30 08:20:32 +00:00
2008-09-01 11:42:19 +00:00
2008-09-01 11:42:19 +00:00
2009-09-30 04:39:46 +00:00
2008-10-14 15:06:25 +00:00
2009-09-30 06:15:39 +00:00
2008-12-05 06:44:40 +00:00
2008-10-14 15:06:25 +00:00
2009-09-30 04:43:35 +00:00
2009-09-30 08:20:32 +00:00
2008-12-05 06:44:40 +00:00
2008-09-01 11:42:19 +00:00
2008-12-05 06:44:40 +00:00
2009-01-04 15:34:08 +00:00
2008-12-05 06:44:40 +00:00
2009-09-30 04:46:31 +00:00
2008-12-10 23:05:50 +00:00
2009-09-30 05:57:20 +00:00
2008-12-05 06:44:40 +00:00
2008-09-01 11:42:19 +00:00
2008-12-05 06:44:40 +00:00
2008-09-01 11:42:19 +00:00

--
--  $Id$
--

Overview of newlib support (newlib is from CYGNUS)
    Each task can have its own libc state including:
        open stdio files
        strtok
        multi precision arithmetic state
        etc.

    This is implemented by a reentrancy data structure for each task.

    When a task is "started" (in RTEMS sense) the reentrancy structure
    is allocated.  Its address is stored in notepad[NOTEPAD_LAST].

    When task is switched to, the value of global variable _impure_ptr
    is changed to the value of the new tasks reentrancy structure.

    When a task is deleted
        atexit() processing (for that task) happens
        task's stdio buffers are flushed

    When exit(3) is called
        calling task's atexit processing done
        global libc state atexit processing done
            (this will include any atexit routines installed by drivers)
        executive is shutdown
            causes a context switch back to bsp land


NOTE:
    libc extension are installed by bsp_libc_init()
        iff we are using clock interrupts.
        This hack is necessary to allow the tmtests to avoid
        timing the extensions.