Changeset ee0702ef in rtems
- Timestamp:
- 10/25/99 17:37:19 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 55f5c1e
- Parents:
- 0d01c94b
- Location:
- doc
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/posix_users/key.t
r0d01c94b ree0702ef 49 49 50 50 int 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 ) 53 53 ); 54 54 @end example -
doc/posix_users/message.t
r0d01c94b ree0702ef 67 67 @example 68 68 @group 69 /backit /backit~ /bin /boot /dev /etc /home /lib /lost+found /mnt /proc /root /sbin /tmp /usr /usr1 /usr2 /usr3 /var70 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) Structure71 CVS/72 73 69 typedef 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; 78 74 @}; 79 75 @end group -
doc/posix_users/semaphores.t
r0d01c94b ree0702ef 46 46 47 47 @example 48 /backit /backit~ /bin /boot /dev /etc /home /lib /lost+found /mnt /proc /root /sbin /tmp /usr /usr1 /usr2 /usr3 /var49 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 structure50 CVS/51 52 48 typedef int sem_t 53 49 @end example -
doc/posix_users/thread.t
r0d01c94b ree0702ef 888 888 889 889 int 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 *arg890 pthread_t *thread, 891 const pthread_attr_t *attr, 892 void (*start_routine)( void *), 893 void *arg 894 894 ); 895 895 @end example -
doc/rtems_gdb/example.t
r0d01c94b ree0702ef 9 9 @chapter Debug Session Example 10 10 11 The following is a debug session. Note that some lines have been broken 12 to aviod formatting problems in the printed document. 13 11 14 @example 12 15 GNU gdb 4.17 13 16 Copyright 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". 17 GDB is free software, covered by the GNU General Public License, and 18 you are welcome to change it and/or distribute copies of it under 19 certain conditions. Type "show copying" to see the conditions. 20 There is absolutely no warranty for GDB. 21 Type "show warranty" for details. 22 This GDB was configured as --host=i686-pc-linux-gnu --target=i386-rtems. 19 23 (gdb) setrpcmode sun 20 24 (gdb) setdaemontype rdbg … … 48 52 _Thread_Dispatch () at /rtems4/c/src/exec/score/src/thread.c:315 49 53 (gdb) b init.c:92 50 Breakpoint 1 at 0x200180: file /rtems4/c/src/tests/samples/debug/init.c, line 92. 54 Breakpoint 1 at 0x200180: file \ 55 /rtems4/c/src/tests/samples/debug/init.c, line 92. 51 56 (gdb) c 52 57 Continuing. 53 58 Thread 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 )] 61 Breakpoint 1, example2 (argument=4) at \ 62 /rtems4/c/src/tests/samples/debug/init.c:92 56 63 92 tuto += tuti; 57 64 (gdb) b init.c:66 58 Breakpoint 2 at 0x200128: file /rtems4/c/src/tests/samples/debug/init.c, line 66. 65 Breakpoint 2 at 0x200128: file \ 66 /rtems4/c/src/tests/samples/debug/init.c, line 66. 59 67 (gdb) c 60 68 Continuing. 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 )] 71 Breakpoint 2, example1 (argument=4) at \ 72 /rtems4/c/src/tests/samples/debug/init.c:66 63 73 66 toto += titi; 64 74 (gdb) c 65 75 Continuing. 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 )] 78 Breakpoint 1, example2 (argument=4) at \ 79 /rtems4/c/src/tests/samples/debug/init.c:92 68 80 92 tuto += tuti; 69 81 (gdb) s -
doc/rtems_gdb/trouble.t
r0d01c94b ree0702ef 21 21 (gdb) target rtems my_target 22 22 23 Attaching remote machine across net... Invalid hostname. Couldn't find remote24 host address.23 Attaching remote machine across net... \ 24 Invalid hostname. Couldn't find remote host address. 25 25 @end example 26 26 -
doc/started/buildc.t
r0d01c94b ree0702ef 57 57 File: @value{GCC-TAR} 58 58 @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}} 60 60 @end ifset 61 61 @end example -
doc/started/require.t
r0d01c94b ree0702ef 14 14 15 15 @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 | 21 | each individual build directory | 300 Mbytes worst case | 22 | each installation directory | 20-400 Mbytes | 23 +------------------------------------+--------------------------+ 24 24 @end example 25 25 -
doc/started_ada/require.t
r0d01c94b ree0702ef 14 14 15 15 @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 | 21 | each individual build directory | 300 Mbytes worst case | 22 | each installation directory | 20-130 Mbytes | 23 +------------------------------------+--------------------------+ 24 24 @end example 25 25
Note: See TracChangeset
for help on using the changeset viewer.