Joel Sherrill
a2cf229615
2008-07-18 Joel Sherrill <joel.sherrill@oarcorp.com>
...
PR 1291/cpukit
* itron/inline/rtems/itron/semaphore.inl, itron/src/twai_sem.c,
posix/include/mqueue.h, posix/include/rtems/posix/mqueue.h,
posix/include/rtems/posix/semaphore.h,
posix/include/rtems/posix/time.h, posix/src/condtimedwait.c,
posix/src/mqueuereceive.c, posix/src/mqueuerecvsupp.c,
posix/src/mqueuesend.c, posix/src/mqueuesendsupp.c,
posix/src/mqueuetimedreceive.c, posix/src/mqueuetimedsend.c,
posix/src/mutextimedlock.c, posix/src/mutextranslatereturncode.c,
posix/src/posixtimespecabsolutetimeout.c,
posix/src/prwlocktimedrdlock.c, posix/src/prwlocktimedwrlock.c,
posix/src/semaphoretranslatereturncode.c,
posix/src/semaphorewaitsupp.c, posix/src/semtimedwait.c,
posix/src/semtrywait.c, posix/src/semwait.c,
posix/src/sigtimedwait.c, posix/src/timersettime.c,
posix/src/ualarm.c, rtems/src/semobtain.c,
rtems/src/semtranslatereturncode.c,
score/include/rtems/score/coremutex.h,
score/include/rtems/score/coresem.h, score/src/coresemseize.c: This
patch addresses issues on implementation of the timeout on the
following POSIX services. Some of these services incorrectly took a
timeout as a relative time. Others would compute a 0 delta to timeout
if the absolute time and the current time were equal and thus
incorrectly block the caller forever. The root of the confusion is
that POSIX specifies that if the timeout is incorrect (e.g. in the
past, is now, or is numerically invalid), that it does not matter if
the call would succeed without blocking. This is in contrast to RTEMS
programming style where all errors are checked before any critical
sections are entered. This fix implemented a more uniform way of
handling POSIX absolute time timeouts.
+ pthread_cond_timedwait - could block forever
+ mq_timedreceive - used relative not absolute time
+ mq_timedsend - used relative not absolute time
+ pthread_mutex_timedlock - used relative not absolute time
+ pthread_rwlock_timedrdlock- used relative not absolute time
+ pthread_rwlock_timedwrlock- used relative not absolute time
+ sem_timedwait - could block forever
2008-07-22 17:17:12 +00:00
Joel Sherrill
f58d7d8ac5
2008-05-06 Joel Sherrill <joel.sherrill@OARcorp.com>
...
PR 1285/rtems
* sapi/include/rtems/config.h: Remove obsolete
rtems_configuration_get_maximum_devices().
2008-05-06 15:16:26 +00:00
Joel Sherrill
280ef6eefd
2008-04-25 Joel Sherrill <joel.sherrill@OARcorp.com>
...
* score/include/rtems/system.h: Fix typo in comment.
2008-04-25 15:24:38 +00:00
Joel Sherrill
ad62077db9
2008-03-07 Joel Sherrill <joel.sherrill@OARcorp.com>
...
PR 1280/tools
* shttpd/log.c: Broaden logic so all gcc versions < 4.3.0 will enable
work around.
2008-03-07 18:58:39 +00:00
Joel Sherrill
35305b59e8
2008-02-20 Alexandru Bugnar <a-bugnar@criticalsoftware.com>
...
PR 1278/cpukit
* cpu.c: Fix incorrect bit manipulation on returning old address of raw
trap handler.
2008-02-20 21:54:13 +00:00
Ralf Corsepius
56535aaae2
2008-02-15 Ralf Corsépius <ralf.corsepius@rtems.org>
...
* libcsupport/include/motorola/mc68230.h: Prefix defines with
MC68230_ to avoid preprocessor clashes.
2008-02-15 07:10:09 +00:00
Joel Sherrill
7947987c78
Upgrade to 4.8.0
2008-02-14 17:29:18 +00:00
Joel Sherrill
d89da6eca7
2008-02-06 Joel Sherrill <joel.sherrill@OARcorp.com>
...
PR 1277/networking
* libnetworking/netinet/in_cksum_i386.h: Use q instead of r in
constraint for assembly language. This restricts the register choice
to the a-d registers.
2008-02-06 16:58:46 +00:00
Joel Sherrill
163a1047c2
2008-02-05 Joel Sherrill <joel.sherrill@OARcorp.com>
...
* posix/Makefile.am: Remove these. They were proposed but never
standardized.
* posix/src/pthreadgetcputime.c, posix/src/pthreadsetcputime.c: Removed.
2008-02-05 22:35:08 +00:00
Ralf Corsepius
713d79e3aa
2007-12-23 Ralf Corsépius <ralf.corsepius@rtems.org>
...
* libcsupport/src/sync.c: Make sync() POSIX-compliant.
* libcsupport/src/__gettod.c: Make gettimeofday() POSIX-compliant.
2007-12-23 07:14:23 +00:00
Ralf Corsepius
c752e84935
Make gettimeofday() POSIX-compliant.
2007-12-23 07:14:12 +00:00
Ralf Corsepius
e9a9bdd1e5
Make sync() POSIX-compliant.
2007-12-23 07:13:55 +00:00
Joel Sherrill
5881d06cb9
2007-12-21 Joel Sherrill <joel.sherrill@OARcorp.com>
...
PR 1268/cpukit
* libcsupport/include/rtems/assoc.h,
rtems/src/semtranslatereturncode.c: There is no
rtems_assoc_ptr_by_value method.
2007-12-21 15:23:01 +00:00
Ralf Corsepius
7875d408be
2007-12-16 Ralf Corsépius <ralf.corsepius@rtems.org>
...
* configure.ac: Revert Joel's 2007-06-13 NDEBUG patch.
2007-12-16 18:14:09 +00:00
Joel Sherrill
49bf16a322
2007-12-11 Joel Sherrill <joel.sherrill@OARcorp.com>
...
* score/src/pheapallocatealigned.c, score/src/pheapgetblocksize.c:
Reverse file contents.
2007-12-11 23:44:29 +00:00
Joel Sherrill
aa56c20114
2007-12-06 Joel Sherrill <joel.sherrill@OARcorp.com>
...
* httpd/Makefile.am, httpd/preinstall.am,
rtems/src/semtranslatereturncode.c: rtems_webserver.h must be
installed. It is the initialization interface for both GoAhead and
Simple HTTPD.
2007-12-06 15:18:42 +00:00
Ralf Corsepius
8ffd6be0ea
2007-12-05 Ralf Corsépius <ralf.corsepius@rtems.org>
...
* configure.ac: Remove score/cpu/avr/Makefile,
score/cpu/nios2/Makefile, score/cpu/avr/Makefile.
* score/cpu/Makefile.am: Remove avr, nios2, c4x.
2007-12-05 09:37:57 +00:00
Ralf Corsepius
dea5bb944e
Remove score/cpu/avr/Makefile, score/cpu/nios2/Makefile, score/cpu/avr/Makefile.
2007-12-05 09:37:49 +00:00
Ralf Corsepius
76fb8a6c19
Remove avr, nios2, c4x.
2007-12-05 09:37:28 +00:00
Ralf Corsepius
01a9d2c308
2007-10-15 Ralf Corsépius <ralf.corsepius@rtems.org>
...
* libnetworking/netdb.h, libnetworking/libc/gethostnamadr.c,
libnetworking/libc/getnetnamadr.c: Adjust to POSIX.
Minor updates from FreeBSD.
2007-12-04 16:15:22 +00:00
Ralf Corsepius
1992eff989
Remove from rtems-4-8-branch.
2007-12-04 16:13:25 +00:00
Glenn Humphrey
5d55a0b242
2007-11-27 Glenn Humphrey <glenn.humphrey@OARcorp.com>
...
* posix/src/prwlocktimedrdlock.c, posix/src/prwlocktimedwrlock.c,
rtems/include/rtems/rtems/barrier.h,
score/src/corerwlockobtainread.c, score/src/corerwlockobtainwrite.c,
score/src/corerwlockrelease.c: Fixed several implementation errors.
2007-11-27 18:45:03 +00:00
Joel Sherrill
4b650b58a6
2007-11-27 Joel Sherrill <joel.sherrill@oarcorp.com>
...
* sapi/include/confdefs.h: Add CONFIGURE_APPLICATION_EXTRA_DRIVERS.
2007-11-27 15:36:12 +00:00
Joel Sherrill
c4254e957f
2007-11-26 Joel Sherrill <joel.sherrill@oarcorp.com>
...
* libcsupport/src/printk.c, score/src/objectget.c: Fix spacing.
2007-11-26 21:13:35 +00:00
Joel Sherrill
8802a9b3d1
2007-11-26 Joel Sherrill <joel.sherrill@oarcorp.com>
...
* libcsupport/src/malloc.c: Do not assert on free of bad pointer.
2007-11-26 21:13:02 +00:00
Joel Sherrill
e2f429f144
2007-11-26 Joel Sherrill <joel.sherrill@OARcorp.com>
...
* score/include/rtems/score/thread.h: Fix spelling error.
2007-11-26 19:35:48 +00:00
Joel Sherrill
57a483cf41
2007-11-06 Joel Sherrill <joel.sherrill@OARcorp.com>
...
PR 1266/cpukit
* posix/src/keycreate.c, posix/src/keyrundestructors.c: Use API instead
of class for key indexing.
2007-11-06 21:38:58 +00:00
Glenn Humphrey
2211225438
2007-11-06 Glenn Humphrey <glenn.humphrey@OARcorp.com>
...
Miscellaneous changes made after a review against the POSIX spec.
* posix/src/pbarrierinit.c, posix/src/prwlockinit.c: If the caller
passes a NULL in the attributes parameter, default attributes are used.
* posix/src/prwlockdestroy.c: If there is at least one thread
waiting, do not allow deletion.
* posix/src/prwlockwrlock.c: Corrected parameter passed to the core
operation used to obtain a RWLock for writing.
* posix/src/pspinlocktranslatereturncode.c,
score/include/rtems/score/corespinlock.h,
score/src/corespinlockrelease.c: If the current thread is not the
holder of the lock, do not allow an unlock and return EPERM.
* score/src/corerwlockobtainwrite.c: Corrected to use the operation
for queueing with a timeout handler.
2007-11-06 19:54:22 +00:00
Joel Sherrill
334573e372
2007-11-02 Joel Sherrill <joel.sherrill@OARcorp.com>
...
* score/cpu/sparc/cpu.c, score/cpu/sparc/rtems/score/cpu.h,
score/include/rtems/score/context.h, score/src/threadhandler.c: Fix
stack so gdb backtrace does not print corrupted frame message after
_Thread_Handler. Daniel Hellstrom <daniel@gaisler.com > provided the
SPARC implementation and I made it more general.
2007-11-02 13:35:12 +00:00
Glenn Humphrey
0f4f543279
2007-10-26 Glenn Humphrey <glenn.humphrey@OARcorp.com>
...
* libmisc/cpuuse/cpuusagereport.c, rtems/src/ratemonreportstatistics.c:
Cleaned up reports and fixed a bug related the printf format which
resulted in lack of leading zeroes and misleading magnitude.
* score/src/timespecdivide.c: Fixed bugs related to zero divide case.
2007-10-26 21:31:04 +00:00
Joel Sherrill
3ab4ba719a
2007-10-19 Joel Sherrill <joel.sherrill@OARcorp.com>
...
* telnetd/icmds.c: Add header to file.
2007-10-19 21:34:34 +00:00
Joel Sherrill
f3b1d6851d
Fix typo.
2007-10-19 21:34:28 +00:00
Joel Sherrill
0afb968bad
2007-10-19 Joel Sherrill <joel.sherrill@OARcorp.com>
...
* libcsupport/src/assoc.c: Removed. Accidentally included routine
also in another file. Mistake after splitting.
* libcsrc/Makefile.am: Reflect file removal.
2007-10-19 14:38:25 +00:00
Joel Sherrill
9fe54b2469
2007-10-19 Joel Sherrill <joel.sherrill@OARcorp.com>
...
* libcsupport/src/assoc.c: Removed. Accidentally included routine
also in another file. Mistake after splitting.
2007-10-19 14:37:12 +00:00
Ralf Corsepius
df3055aa6f
2007-10-15 Ralf Corsépius <ralf.corsepius@rtems.org>
...
* libnetworking/netdb.h, libnetworking/libc/gethostnamadr.c,
libnetworking/libc/getnetnamadr.c: Adjust to POSIX.
Minor updates from FreeBSD.
2007-10-15 08:00:49 +00:00
Ralf Corsepius
d9a8aa054a
Adjust to POSIX. Minor updates from FreeBSD.
2007-10-15 08:00:38 +00:00
Ralf Corsepius
8e1da2b644
Add if_nameindex (from FreeBSD).
2007-10-15 06:53:08 +00:00
Joel Sherrill
ad8c2e6cbf
2007-10-11 Joel Sherrill <joel.sherrill@OARcorp.com>
...
* score/include/rtems/score/copyrt.h: Update year.
2007-10-11 12:50:27 +00:00
Joel Sherrill
26ca309c2e
2007-10-11 Daniel Hellstrom <daniel@gaisler.com>
...
* libi2c/libi2c.c, libi2c/libi2c.h: Add message about needing IMFS.
Fixed check of status when registering driver. Add use of strerror().
2007-10-11 12:46:58 +00:00
Ralf Corsepius
5f3b50c779
Regenerate.
2007-10-04 16:07:27 +00:00
Ralf Corsepius
98c8d080c1
2007-10-04 Keith Robertson <kjrobert@alumni.uwaterloo.ca>,
...
Ralf Corsépius <ralf.corsepius@rtems.org >
* libnetworking/ifaddrs.h, libnetworking/libc/getifaddrs.c,
libnetworking/libc/if_indextoname.c,
libnetworking/libc/if_nameindex.c: New (from FreeBSD)
* Makefile.am: Add files above.
* libnetworking/net/if.h: Add if_nameindex (from FreeBSD).
2007-10-04 16:06:49 +00:00
Joel Sherrill
11d617593f
2007-09-28 Joel Sherrill <joel.sherrill@oarcorp.com>
...
* libmisc/stackchk/check.c: Eliminate output with little information.
Always print a blown message using the same routine. Now works with
GNAT RTS -fstack-checking if you have patch for the RTEMS specific
support in your GCC version.
2007-09-28 15:03:48 +00:00
cvs2git
a24f7003ab
This commit was manufactured by cvs2svn to create branch 'rtems-4-8-branch'.
...
Sprout from master 2007-09-19 06:34:25 UTC Ralf Corsepius <ralf.corsepius@rtems.org > 'Regenerate.'
Cherrypick from shttpd 2007-06-11 13:24:29 UTC Ralf Corsepius <ralf.corsepius@rtems.org > 'Import from shttpd-1.37.':
cpukit/shttpd/auth.c
cpukit/shttpd/cgi.c
cpukit/shttpd/compat_unix.c
cpukit/shttpd/compat_unix.h
cpukit/shttpd/compat_win32.c
cpukit/shttpd/compat_win32.h
cpukit/shttpd/compat_wince.c
cpukit/shttpd/compat_wince.h
cpukit/shttpd/config.c
cpukit/shttpd/io.h
cpukit/shttpd/io_cgi.c
cpukit/shttpd/io_dir.c
cpukit/shttpd/io_emb.c
cpukit/shttpd/io_file.c
cpukit/shttpd/io_socket.c
cpukit/shttpd/io_ssl.c
cpukit/shttpd/llist.h
cpukit/shttpd/md5.c
cpukit/shttpd/md5.h
cpukit/shttpd/mime_type.c
cpukit/shttpd/shttpd.1
cpukit/shttpd/shttpd.c
cpukit/shttpd/shttpd.h
cpukit/shttpd/ssl.h
cpukit/shttpd/standalone.c
cpukit/shttpd/std_includes.h
Cherrypick from SLAC 2007-07-25 05:22:23 UTC Ralf Corsepius <ralf.corsepius@rtems.org > 'Import from rtems-nfs-1.5.tgz.':
c/src/nfsclient/LICENSE
c/src/nfsclient/README
c/src/nfsclient/proto/mount_prot.h
c/src/nfsclient/proto/mount_prot.x
c/src/nfsclient/proto/mount_prot_xdr.c
c/src/nfsclient/proto/nfs_prot.h
c/src/nfsclient/proto/nfs_prot.x
c/src/nfsclient/proto/nfs_prot_xdr.c
c/src/nfsclient/rfc1094.txt
c/src/nfsclient/rtems-filesystem-patch
c/src/nfsclient/src/cexphelp.c
c/src/nfsclient/src/librtemsNfs.h
c/src/nfsclient/src/nfs.c
c/src/nfsclient/src/nfs.modini.c
c/src/nfsclient/src/nfsTest.c
c/src/nfsclient/src/rpcio.h
c/src/nfsclient/src/rpcio.modini.c
c/src/nfsclient/src/sock_mbuf.c
c/src/nfsclient/src/xdr_mbuf.c
Cherrypick from zlib 2005-10-28 07:22:42 UTC Ralf Corsepius <ralf.corsepius@rtems.org > 'Import of zlib-1.2.2.2.tar.gz':
cpukit/zlib/FAQ
cpukit/zlib/INDEX
cpukit/zlib/README
cpukit/zlib/algorithm.txt
cpukit/zlib/crc32.h
cpukit/zlib/infback.c
cpukit/zlib/inffast.c
cpukit/zlib/inffast.h
cpukit/zlib/inffixed.h
cpukit/zlib/inflate.c
cpukit/zlib/inflate.h
cpukit/zlib/trees.h
cpukit/zlib/zlib.3
cpukit/zlib/zlib.h
Cherrypick from rtemsdoc-4-5-branch 1997-05-27 12:40:10 UTC Joel Sherrill <joel.sherrill@OARcorp.com > 'base RTEMS documentation':
doc/common/treedef.tex
Delete:
contrib/crossrpms/cygwin/.cvsignore
contrib/crossrpms/cygwin/Makefile.am
contrib/crossrpms/cygwin/binutils.am
contrib/crossrpms/cygwin/gcc-prep.add
contrib/crossrpms/cygwin/gcc.am
contrib/crossrpms/cygwin/i686/.cvsignore
contrib/crossrpms/cygwin/i686/Makefile.am
contrib/crossrpms/cygwin/i686/binutils-sources.add
contrib/crossrpms/cygwin/i686/gcc-sources.add
contrib/crossrpms/cygwin/i686/libncurses-devel.add
contrib/crossrpms/cygwin/i686/libs.add
contrib/crossrpms/cygwin/i686/target-libncurses-devel.add
contrib/crossrpms/cygwin/i686/target-libs.add
contrib/crossrpms/cygwin/i686/target-w32api.add
contrib/crossrpms/cygwin/i686/target-zlib.add
contrib/crossrpms/cygwin/i686/w32api.add
contrib/crossrpms/cygwin/i686/zlib.add
contrib/crossrpms/freebsd5.2/.cvsignore
contrib/crossrpms/freebsd5.2/Makefile.am
contrib/crossrpms/freebsd5.2/binutils.am
contrib/crossrpms/freebsd5.2/gcc-prep.add
contrib/crossrpms/freebsd5.2/gcc.am
contrib/crossrpms/freebsd5.2/i586/.cvsignore
contrib/crossrpms/freebsd5.2/i586/Makefile.am
contrib/crossrpms/freebsd5.2/i586/binutils-sources.add
contrib/crossrpms/freebsd5.2/i586/gcc-prep.add
contrib/crossrpms/freebsd5.2/i586/gcc-sources.add
contrib/crossrpms/freebsd5.2/i586/libs.add
contrib/crossrpms/freebsd5.2/i586/target-libs.add
contrib/crossrpms/freebsd6.0/.cvsignore
contrib/crossrpms/freebsd6.0/Makefile.am
contrib/crossrpms/freebsd6.0/binutils.am
contrib/crossrpms/freebsd6.0/gcc-prep.add
contrib/crossrpms/freebsd6.0/gcc.am
contrib/crossrpms/freebsd6.0/i586/.cvsignore
contrib/crossrpms/freebsd6.0/i586/Makefile.am
contrib/crossrpms/freebsd6.0/i586/binutils-sources.add
contrib/crossrpms/freebsd6.0/i586/gcc-sources.add
contrib/crossrpms/freebsd6.0/i586/libs.add
contrib/crossrpms/freebsd6.0/i586/target-libs.add
contrib/crossrpms/freebsd6.1/.cvsignore
contrib/crossrpms/freebsd6.1/Makefile.am
contrib/crossrpms/freebsd6.1/binutils.am
contrib/crossrpms/freebsd6.1/gcc-prep.add
contrib/crossrpms/freebsd6.1/gcc.am
contrib/crossrpms/freebsd6.1/i586/.cvsignore
contrib/crossrpms/freebsd6.1/i586/Makefile.am
contrib/crossrpms/freebsd6.1/i586/binutils-sources.add
contrib/crossrpms/freebsd6.1/i586/gcc-sources.add
contrib/crossrpms/freebsd6.1/i586/libs.add
contrib/crossrpms/freebsd6.1/i586/target-libs.add
contrib/crossrpms/freebsd6.2/.cvsignore
contrib/crossrpms/freebsd6.2/Makefile.am
contrib/crossrpms/freebsd6.2/binutils.am
contrib/crossrpms/freebsd6.2/gcc-prep.add
contrib/crossrpms/freebsd6.2/gcc.am
contrib/crossrpms/freebsd6.2/i586/.cvsignore
contrib/crossrpms/freebsd6.2/i586/Makefile.am
contrib/crossrpms/freebsd6.2/i586/binutils-sources.add
contrib/crossrpms/freebsd6.2/i586/gcc-sources.add
contrib/crossrpms/freebsd6.2/i586/libs.add
contrib/crossrpms/freebsd6.2/i586/target-libs.add
contrib/crossrpms/mingw32/.cvsignore
contrib/crossrpms/mingw32/Makefile.am
contrib/crossrpms/mingw32/binutils.am
contrib/crossrpms/mingw32/gcc-prep.add
contrib/crossrpms/mingw32/gcc.am
contrib/crossrpms/mingw32/i686/.cvsignore
contrib/crossrpms/mingw32/i686/Makefile.am
contrib/crossrpms/mingw32/i686/binutils-sources.add
contrib/crossrpms/mingw32/i686/gcc-sources.add
contrib/crossrpms/mingw32/i686/libs.add
contrib/crossrpms/mingw32/i686/target-libs.add
contrib/crossrpms/mingw32/i686/target-w32api.add
contrib/crossrpms/mingw32/i686/w32api.add
contrib/crossrpms/solaris2.7/.cvsignore
contrib/crossrpms/solaris2.7/Makefile.am
contrib/crossrpms/solaris2.7/binutils.am
contrib/crossrpms/solaris2.7/gcc-prep.add
contrib/crossrpms/solaris2.7/gcc.am
contrib/crossrpms/solaris2.7/sparc/.cvsignore
contrib/crossrpms/solaris2.7/sparc/Makefile.am
contrib/crossrpms/solaris2.7/sparc/binutils-sources.add
contrib/crossrpms/solaris2.7/sparc/gcc-sources.add
contrib/crossrpms/solaris2.7/sparc/libs.add
contrib/crossrpms/solaris2.7/sparc/target-libs.add
cpukit/zlib/doc/rfc1950.txt
cpukit/zlib/doc/rfc1951.txt
cpukit/zlib/doc/rfc1952.txt
cpukit/zlib/doc/txtvsbin.txt
cpukit/zlib/examples/zran.c
cpukit/zlib/old/as400/bndsrc
cpukit/zlib/old/as400/compile.clp
cpukit/zlib/old/as400/readme.txt
cpukit/zlib/old/visualc6/README.txt
cpukit/zlib/old/visualc6/example.dsp
cpukit/zlib/old/visualc6/minigzip.dsp
cpukit/zlib/old/visualc6/zlib.dsw
cpukit/zlib/zlib.pc.in
cpukit/zlib/zlib2ansi
2007-09-19 06:34:26 +00:00
Joel Sherrill
f393150407
2007-09-17 Joel Sherrill <joel.sherrill@oarcorp.com>
...
* posix/src/semaphorecreatesupp.c: Fixed warning.
2007-09-17 14:40:24 +00:00
Joel Sherrill
a6d5ea6b6b
2007-09-17 Joel Sherrill <joel.sherrill@oarcorp.com>
...
* libmisc/dumpbuf/dumpbuf.c: Use printk.
2007-09-17 14:28:41 +00:00
Ralf Corsepius
e80aa4fae8
2007-09-16 Ralf Corsépius <ralf.corsepius@rtems.org>
...
* libnetworking/net/ppp_defs.h: Include rtems/stdint.h.
Use uint32_t for ext_accm.
2007-09-16 06:23:26 +00:00
Ralf Corsepius
b0ea4a492f
2007-09-16 Ralf Corsépius <ralf.corsepius@rtems.org>
...
* pppd/auth.c, pppd/demand.c, pppd/ipcp.c, pppd/ipcp.h,
pppd/lcp.c, pppd/lcp.h, pppd/magic.c, pppd/magic.h, pppd/options.c,
pppd/pppd.h, pppd/sys-rtems.c, pppd/utils.c: Convert to using C99
fixed-size types instead of BSD fixed-size types.
2007-09-16 04:14:22 +00:00
Ralf Corsepius
8a4f22e64e
Convert to using C99 fixed-size types instead of BSD fixed-size types.
2007-09-16 04:13:48 +00:00
Joel Sherrill
33eeeb28dc
2007-09-14 Joel Sherrill <joel.sherrill@oarcorp.com>
...
* libmisc/stackchk/check.c: Fix alignment of output.
2007-09-14 22:53:39 +00:00
Joel Sherrill
15a47934fb
2007-09-14 Joel Sherrill <joel.sherrill@oarcorp.com>
...
* libmisc/monitor/monitor.h: Add network commands that were in the
network supplement but not in the code.
* libmisc/monitor/mon-network.c: New file.
2007-09-14 22:52:53 +00:00