Changeset ee0702ef in rtems


Ignore:
Timestamp:
10/25/99 17:37:19 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
55f5c1e
Parents:
0d01c94b
Message:

Fixing many lines that are too long to format cleanly.

Location:
doc
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • doc/posix_users/key.t

    r0d01c94b ree0702ef  
    4949
    5050int pthread_key_create(
    51 pthread_key_t *key,
    52 void (*destructor)( void CVS Makefile cancel.t clock.t cond.t cspecific.t device.t files.t io.t j key.t memorymgmt.t message.t mutex.t nodesc nodescr posix_users.cps posix_users.fns posix_users.texi preface.texi procenv.t process.t psxmsg.t sched.t semaphores.t signal.t systemdb.t thread.t )
     51  pthread_key_t *key,
     52  void (*destructor)( void )
    5353);
    5454@end example
  • doc/posix_users/message.t

    r0d01c94b ree0702ef  
    6767@example
    6868@group
    69 /backit /backit~ /bin /boot /dev /etc /home /lib /lost+found /mnt /proc /root /sbin /tmp /usr /usr1 /usr2 /usr3 /var
    70 CVS Makefile cancel.t clock.t cond.t cspecific.t device.t files.t io.t j key.t memorymgmt.t message.t mutex.t nodesc nodescr posix_users.cps posix_users.fns posix_users.texi preface.texi procenv.t process.t psxmsg.t sched.t semaphores.t signal.t systemdb.t thread.t Create Message Queue (mq) Structure
    71 CVS/
    72 
    7369typedef struct mq_attr@{
    74 long mq_flags; /backit /backit~ /bin /boot /dev /etc /home /lib /lost+found /mnt /proc /root /sbin /tmp /usr /usr1 /usr2 /usr3 /var Message queue flags CVS/
    75 long mq_maxmsg; /backit /backit~ /bin /boot /dev /etc /home /lib /lost+found /mnt /proc /root /sbin /tmp /usr /usr1 /usr2 /usr3 /var Maximum number of messages for the queue CVS/
    76 long mq_msgsize; /backit /backit~ /bin /boot /dev /etc /home /lib /lost+found /mnt /proc /root /sbin /tmp /usr /usr1 /usr2 /usr3 /var Maximum message size CVS/
    77 long mq_curmsgs; /backit /backit~ /bin /boot /dev /etc /home /lib /lost+found /mnt /proc /root /sbin /tmp /usr /usr1 /usr2 /usr3 /var Number of messages currently queued CVS/
     70  long mq_flags;
     71  long mq_maxmsg;
     72  long mq_msgsize;
     73  long mq_curmsgs;
    7874@};
    7975@end group
  • doc/posix_users/semaphores.t

    r0d01c94b ree0702ef  
    4646
    4747@example
    48 /backit /backit~ /bin /boot /dev /etc /home /lib /lost+found /mnt /proc /root /sbin /tmp /usr /usr1 /usr2 /usr3 /var
    49 CVS Makefile cancel.t clock.t cond.t cspecific.t device.t files.t io.t j key.t memorymgmt.t message.t mutex.t nodesc nodescr posix_users.cps posix_users.fns posix_users.texi preface.texi procenv.t process.t psxmsg.t sched.t semaphores.t signal.t systemdb.t thread.t sem_t structure
    50 CVS/
    51 
    5248typedef int sem_t
    5349@end example
  • doc/posix_users/thread.t

    r0d01c94b ree0702ef  
    888888
    889889int pthread_create(
    890 pthread_t *thread,
    891 const pthread_attr_t *attr,
    892 void (*start_routine)( void CVS Makefile cancel.t clock.t cond.t cspecific.t device.t files.t io.t j key.t memorymgmt.t message.t mutex.t nodesc nodescr posix_users.cps posix_users.fns posix_users.texi preface.texi procenv.t process.t psxmsg.t sched.t semaphores.t signal.t systemdb.t thread.t ),
    893 void *arg
     890  pthread_t *thread,
     891  const pthread_attr_t *attr,
     892  void (*start_routine)( void *),
     893  void *arg
    894894);
    895895@end example
  • doc/rtems_gdb/example.t

    r0d01c94b ree0702ef  
    99@chapter Debug Session Example
    1010
     11The following is a debug session.  Note that some lines have been broken
     12to aviod formatting problems in the printed document.
     13
    1114@example
    1215GNU gdb 4.17
    1316Copyright 1998 Free Software Foundation, Inc.
    14 GDB is free software, covered by the GNU General Public License, and you are
    15 welcome to change it and/or distribute copies of it under certain conditions.
    16 Type "show copying" to see the conditions.
    17 There is absolutely no warranty for GDB.  Type "show warranty" for details.
    18 This GDB was configured as --host=i686-pc-linux-gnu --target=i386-rtems".
     17GDB is free software, covered by the GNU General Public License, and
     18you are welcome to change it and/or distribute copies of it under
     19certain conditions.  Type "show copying" to see the conditions.
     20There is absolutely no warranty for GDB. 
     21Type "show warranty" for details.
     22This GDB was configured as --host=i686-pc-linux-gnu --target=i386-rtems.
    1923(gdb) setrpcmode sun
    2024(gdb) setdaemontype rdbg
     
    4852_Thread_Dispatch () at /rtems4/c/src/exec/score/src/thread.c:315
    4953(gdb) b init.c:92
    50 Breakpoint 1 at 0x200180: file /rtems4/c/src/tests/samples/debug/init.c, line 92.
     54Breakpoint 1 at 0x200180: file \
     55       /rtems4/c/src/tests/samples/debug/init.c, line 92.
    5156(gdb) c
    5257Continuing.
    5358Thread 134283273 (Rini) has been deleted.
    54 [Switching to Rtems thread 134283271 (Not suspended) ( <= current target thread )]
    55 Breakpoint 1, example2 (argument=4) at /rtems4/c/src/tests/samples/debug/init.c:92
     59[Switching to Rtems thread 134283271 (Not suspended) \
     60    ( <= current target thread )]
     61Breakpoint 1, example2 (argument=4) at \
     62    /rtems4/c/src/tests/samples/debug/init.c:92
    566392 tuto += tuti;
    5764(gdb) b init.c:66
    58 Breakpoint 2 at 0x200128: file /rtems4/c/src/tests/samples/debug/init.c, line 66.
     65Breakpoint 2 at 0x200128: file \
     66    /rtems4/c/src/tests/samples/debug/init.c, line 66.
    5967(gdb) c
    6068Continuing.
    61 [Switching to Rtems thread 134283270 (Not suspended) ( <= current target thread )]
    62 Breakpoint 2, example1 (argument=4) at /rtems4/c/src/tests/samples/debug/init.c:66
     69[Switching to Rtems thread 134283270 (Not suspended) \
     70    ( <= current target thread )]
     71Breakpoint 2, example1 (argument=4) at \
     72    /rtems4/c/src/tests/samples/debug/init.c:66
    637366 toto += titi;
    6474(gdb) c
    6575Continuing.
    66 [Switching to Rtems thread 134283271 (Not suspended) ( <= current target thread )]
    67 Breakpoint 1, example2 (argument=4) at /rtems4/c/src/tests/samples/debug/init.c:92
     76[Switching to Rtems thread 134283271 (Not suspended) \
     77    ( <= current target thread )]
     78Breakpoint 1, example2 (argument=4) at \
     79    /rtems4/c/src/tests/samples/debug/init.c:92
    688092 tuto += tuti;
    6981(gdb) s
  • doc/rtems_gdb/trouble.t

    r0d01c94b ree0702ef  
    2121(gdb) target rtems my_target
    2222
    23 Attaching remote machine across net... Invalid hostname. Couldn't find remote
    24 host address.
     23Attaching remote machine across net... \
     24      Invalid hostname. Couldn't find remote host address.
    2525@end example
    2626
  • doc/started/buildc.t

    r0d01c94b ree0702ef  
    5757    File:        @value{GCC-TAR}
    5858@ifset use-html
    59     URL:         @uref{Download @value{GCC-VERSION},ftp://@value{GCC-FTPSITE}@value{GCC-HTTPDIR}}
     59    URL:         @uref{Download @value{GCC-VERSION}, ftp://@value{GCC-FTPSITE}@value{GCC-HTTPDIR}}
    6060@end ifset
    6161@end example
  • doc/started/require.t

    r0d01c94b ree0702ef  
    1414
    1515@example
    16 +----------------------------------------+------------------------------+
    17 |                Component               |     Disk Space Required      |
    18 +----------------------------------------+------------------------------+
    19 |          archive directory             |          30 Mbytes           |
    20 |          tools src unzipped            |         100 Mbytes           |
    21   each individual build directory     |    300 Mbytes worst case     |
    22 |       each installation directory      |        20-400 Mbytes         |
    23 +----------------------------------------+------------------------------+
     16+------------------------------------+--------------------------+
     17|              Component             |   Disk Space Required    |
     18+------------------------------------+--------------------------+
     19|        archive directory           |        30 Mbytes         |
     20|        tools src unzipped          |       100 Mbytes         |
     21each individual build directory   |  300 Mbytes worst case   |
     22|     each installation directory    |      20-400 Mbytes       |
     23+------------------------------------+--------------------------+
    2424@end example
    2525
  • doc/started_ada/require.t

    r0d01c94b ree0702ef  
    1414
    1515@example
    16 +----------------------------------------+------------------------------+
    17 |                Component               |     Disk Space Required      |
    18 +----------------------------------------+------------------------------+
    19 |          archive directory             |          30 Mbytes           |
    20 |          tools src unzipped            |         100 Mbytes           |
    21   each individual build directory     |    300 Mbytes worst case     |
    22 |       each installation directory      |        20-130 Mbytes         |
    23 +----------------------------------------+------------------------------+
     16+------------------------------------+--------------------------+
     17|              Component             |   Disk Space Required    |
     18+------------------------------------+--------------------------+
     19|        archive directory           |        30 Mbytes         |
     20|        tools src unzipped          |       100 Mbytes         |
     21each individual build directory   |  300 Mbytes worst case   |
     22|     each installation directory    |      20-130 Mbytes       |
     23+------------------------------------+--------------------------+
    2424@end example
    2525
Note: See TracChangeset for help on using the changeset viewer.