]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
21 years agoExplain what the rot13 script does.
tjr [Mon, 24 Mar 2003 11:18:30 +0000 (11:18 +0000)]
Explain what the rot13 script does.

PR: 39044

21 years agoBetter fix for the problem addressed by rev.1.79: don't loop in
bde [Mon, 24 Mar 2003 11:03:42 +0000 (11:03 +0000)]
Better fix for the problem addressed by rev.1.79: don't loop in
fifo_open() waiting for another reader or writer if one arrived and
departed while we were waiting (or a little earlier).

Rev.1.79 broke blocking opens of fifos by making them time out after 1
second.  This was bad for at least apsfilter.

Tested by: "Simon 'corecode' Schubert" <corecode@corecode.ath.cx>,
Alexander Leidinger <Alexander@leidinger.net>,
phk
MFC after: 4 weeks

21 years agoThe descriptions of the -C and -M options were around the wrong way;
tjr [Mon, 24 Mar 2003 10:45:12 +0000 (10:45 +0000)]
The descriptions of the -C and -M options were around the wrong way;
fix this.

PR: 49968
MFC after: 2 weeks

21 years agoAdd -M, -Q, -S, and -T to the usage message.
tjr [Mon, 24 Mar 2003 10:40:24 +0000 (10:40 +0000)]
Add -M, -Q, -S, and -T to the usage message.

21 years agoDisable interrupts while in kdb_trap() to handle cases where the caller
bde [Mon, 24 Mar 2003 10:17:14 +0000 (10:17 +0000)]
Disable interrupts while in kdb_trap() to handle cases where the caller
doesn't do it.  This fixes all known causes of "Context switches not
allowed in the debugger" in mi_switch().  The main cause was trap_fatal()
calling kdb_trap() with interrupts enabled.  Switching to ithreads for
interrupt handling then made fatal traps more fatal and harder to debug.
The problem was limited in -current because most interrupt handlers are
blocked by Giant, but it occurred almost deterministically for me because
my clock interrupt handlers are non-fast and not blocked by Giant.

21 years agoDirectories for Russian manpages.
ru [Mon, 24 Mar 2003 09:39:09 +0000 (09:39 +0000)]
Directories for Russian manpages.

21 years ago- The payload of Write Request Quad must be network byte order.
simokawa [Mon, 24 Mar 2003 04:11:21 +0000 (04:11 +0000)]
- The payload of Write Request Quad must be network byte order.

21 years ago- The payload of Write Request Quad and Read Response Quad must be
simokawa [Mon, 24 Mar 2003 04:06:21 +0000 (04:06 +0000)]
- The payload of Write Request Quad and Read Response Quad must be
network byte order.
- Set ATRetries register after each bus reset because the value is 'undef'
in OHCI spec.

21 years agoSafe PCI configuration.
simokawa [Mon, 24 Mar 2003 03:47:36 +0000 (03:47 +0000)]
Safe PCI configuration.
- Clear PCIM_CMD_MWRICEN:
some chips seem to have problem with write invalidate.
clearing this bit fixes SBP timeout problem.

Tested by: Michael Reifenberger <Michael.Reifenberger@Plaut.de>

- Set PCIM_CMD_SERRESPEN and PCIM_CMD_PERRESPEN
- Moderate value for latency timer.

21 years agoWe don't have cat(1) and kill(1) on the miniroot disks.
mbr [Sun, 23 Mar 2003 23:29:36 +0000 (23:29 +0000)]
We don't have cat(1) and kill(1) on the miniroot disks.

This fix will be committed to the ISC repo later, but for now
take this file out of the vendor tree.

Reviewed by: phk
Approved by: murray

21 years agoDocument the -g option in the usage message.
mtm [Sun, 23 Mar 2003 23:06:44 +0000 (23:06 +0000)]
Document the -g option in the usage message.

Approved by: markm (mentor)(implicit)

21 years agoIntroduce g_cancel_events() and use it a couple of places where it makes
phk [Sun, 23 Mar 2003 23:01:40 +0000 (23:01 +0000)]
Introduce g_cancel_events() and use it a couple of places where it makes
sense.

21 years agoIntroduce an SX lock which allows us to stall event processing
phk [Sun, 23 Mar 2003 21:58:09 +0000 (21:58 +0000)]
Introduce an SX lock which allows us to stall event processing
during OAM operations.

21 years agos/discriptors/descriptors/
cognet [Sun, 23 Mar 2003 19:41:34 +0000 (19:41 +0000)]
s/discriptors/descriptors/

21 years agoRemove MAKEDEV.8. MAKEDEV itself has been nuked some time ago.
brueffer [Sun, 23 Mar 2003 19:02:41 +0000 (19:02 +0000)]
Remove MAKEDEV.8.  MAKEDEV itself has been nuked some time ago.

Approved by: ceri (mentor), phk
Not objected by: ru

21 years agoAdd a new -o option to tell xargs(1) to reopen /dev/tty as stdin in
mux [Sun, 23 Mar 2003 18:29:52 +0000 (18:29 +0000)]
Add a new -o option to tell xargs(1) to reopen /dev/tty as stdin in
the child process, before executing the command.  This is very useful
when you do stuff like ``find ... | xargs interactive_application''.
Without -o, the application would inherit the pipe as its stdin, and
you thus lose any control over it.

This flag has been carefully chosen to not conflit with other options
of other xargs utilities like GNU xargs.

Reviewed by: jmallett

21 years agoRemove unused mtx_lock_giant(), mtx_unlock_giant(), related globals
tjr [Sun, 23 Mar 2003 11:26:11 +0000 (11:26 +0000)]
Remove unused mtx_lock_giant(), mtx_unlock_giant(), related globals
and sysctls.

21 years agoI forgot the evil ioctl census scripts: #include <geom/geom_ctl.h>
phk [Sun, 23 Mar 2003 11:05:44 +0000 (11:05 +0000)]
I forgot the evil ioctl census scripts: #include <geom/geom_ctl.h>

21 years agoMarshalling stuff for OAM API.
phk [Sun, 23 Mar 2003 10:16:14 +0000 (10:16 +0000)]
Marshalling stuff for OAM API.

21 years agoAdd marshalling functions for OAM api.
phk [Sun, 23 Mar 2003 10:15:02 +0000 (10:15 +0000)]
Add marshalling functions for OAM api.

21 years agoA note about which #include files may be used where.
phk [Sun, 23 Mar 2003 10:08:13 +0000 (10:08 +0000)]
A note about which #include files may be used where.

21 years agoStart leaking the AOM api into the tree.
phk [Sun, 23 Mar 2003 10:07:44 +0000 (10:07 +0000)]
Start leaking the AOM api into the tree.

21 years agoSync types with headers.
ru [Sun, 23 Mar 2003 08:23:43 +0000 (08:23 +0000)]
Sync types with headers.

21 years agos/loaded as a module/available as a module/g
obrien [Sun, 23 Mar 2003 04:23:10 +0000 (04:23 +0000)]
s/loaded as a module/available as a module/g

Submitted by: ru

21 years agoGarbage collect FREEBSD_MAC_EXTATTR_NAME and FREEBSD_MAC_EXTATTR_NAMESPACE,
rwatson [Sun, 23 Mar 2003 02:09:20 +0000 (02:09 +0000)]
Garbage collect FREEBSD_MAC_EXTATTR_NAME and FREEBSD_MAC_EXTATTR_NAMESPACE,
which are no longer required now that we have UFS2 with extended
attribute transactions.

Obtained from: TrustedBSD Project
Sponsored by: DARPA, Network Associates Laboratories

21 years agoClarify the proper bitmask for target mode with another example.
njl [Sun, 23 Mar 2003 00:56:20 +0000 (00:56 +0000)]
Clarify the proper bitmask for target mode with another example.

21 years agoMFP4 27224 and 27225:
imp [Sat, 22 Mar 2003 15:39:38 +0000 (15:39 +0000)]
MFP4 27224 and 27225:

Change 27224 by imp@imp_hammer on 2003/03/22 00:16:22
Put what I think are the correct TX RATE translation tables
in place for LUCENT firmware.  This is based on the 4.x driver.
Maybe it should be table driven?

ifconfig wi0 media DS/11Mbps still fails, but it fails before
we even get to the txrate stuff, so other things are wrong.

Change 27225 by imp@imp_hammer on 2003/03/22 00:45:11
Default ic_fixed_rate to -1.  This is the same thing as autoselect.
There really should be a #define for this...

21 years agoadd missing `ipf -s'.
ume [Sat, 22 Mar 2003 14:53:23 +0000 (14:53 +0000)]
add missing `ipf -s'.

Submitted by: Mark Huizer <xaa+freebsd@timewasters.nl>

21 years agoGo for the auto-tuned `maxusers'. This at least fixes
ru [Sat, 22 Mar 2003 14:23:23 +0000 (14:23 +0000)]
Go for the auto-tuned `maxusers'.  This at least fixes
the ``panic: timeout table full'' on Alphas.

Tested by: wilko

21 years agoRemove bitrot associated with `maxusers'.
ru [Sat, 22 Mar 2003 14:18:23 +0000 (14:18 +0000)]
Remove bitrot associated with `maxusers'.

Submitted by: bde

21 years agoDocument the net.inet.icmp branch of the sysctl(3) MIB.
ru [Sat, 22 Mar 2003 13:47:28 +0000 (13:47 +0000)]
Document the net.inet.icmp branch of the sysctl(3) MIB.

Submitted by: mdodd

21 years agomdoc(7) police: Tidy up the formatting.
ru [Sat, 22 Mar 2003 13:43:06 +0000 (13:43 +0000)]
mdoc(7) police: Tidy up the formatting.

21 years agoWe shouldn't assert that a vode is locked in vop_lock_post()
yar [Sat, 22 Mar 2003 13:21:54 +0000 (13:21 +0000)]
We shouldn't assert that a vode is locked in vop_lock_post()
if VOP_LOCK() has failed.

Reviewed by: jeff

21 years ago- Add a new ioctl to get the maximum number of ATA channels.
mux [Sat, 22 Mar 2003 12:18:20 +0000 (12:18 +0000)]
- Add a new ioctl to get the maximum number of ATA channels.
- Use it in atacontrol(8) when listing ATA devices instead of
  stopping at the first ENXIO received.

This makes atacontrol list work on my sparc64 where the two ATA
channels I have are numbered 2 and 3.

Reviewed by: sos

21 years agoRefine translation.
rushani [Sat, 22 Mar 2003 11:13:31 +0000 (11:13 +0000)]
Refine translation.

21 years agoMerge the following from the English version:
rushani [Sat, 22 Mar 2003 10:50:05 +0000 (10:50 +0000)]
Merge the following from the English version:

1.31  -> 1.33 errata/article.sgml

21 years agoMake -c only set flag_c and not a toggle. With flag_c disabled by
keramida [Sat, 22 Mar 2003 09:47:02 +0000 (09:47 +0000)]
Make -c only set flag_c and not a toggle.  With flag_c disabled by
default, this makes the behavior of gstat more predictable when -c is
specified multiple times on the command line.

21 years agoAdd a small manpage.
keramida [Sat, 22 Mar 2003 09:44:56 +0000 (09:44 +0000)]
Add a small manpage.

21 years agoAdd & use a usage() function.
keramida [Sat, 22 Mar 2003 09:39:52 +0000 (09:39 +0000)]
Add & use a usage() function.

21 years agoAdd error and range checking to strtoul() to avoid ending up with a
keramida [Sat, 22 Mar 2003 09:23:29 +0000 (09:23 +0000)]
Add error and range checking to strtoul() to avoid ending up with a
delay time of ULONG_MAX when -I is passed a non-numeric arg.

21 years agoFix some mistranslations.
hrs [Sat, 22 Mar 2003 05:47:29 +0000 (05:47 +0000)]
Fix some mistranslations.

21 years agoMerge the following from the English version:
hrs [Sat, 22 Mar 2003 04:37:55 +0000 (04:37 +0000)]
Merge the following from the English version:

1.500 -> 1.523 relnotes/common/new.sgml

21 years agoAdd a missing </para>.
hrs [Sat, 22 Mar 2003 04:37:16 +0000 (04:37 +0000)]
Add a missing </para>.

21 years agoUse __packed instead of __attribute__((__packed__)).
mux [Sat, 22 Mar 2003 00:25:14 +0000 (00:25 +0000)]
Use __packed instead of __attribute__((__packed__)).

21 years agoModified release note: SA-03:06 (minor wording tweak).
bmah [Fri, 21 Mar 2003 22:37:39 +0000 (22:37 +0000)]
Modified release note:  SA-03:06 (minor wording tweak).

21 years agoNew errata/release notes: SA-03:06.
bmah [Fri, 21 Mar 2003 22:31:44 +0000 (22:31 +0000)]
New errata/release notes:  SA-03:06.

21 years agoMitigate deadlock situation pending a more complete solution.
phk [Fri, 21 Mar 2003 22:05:33 +0000 (22:05 +0000)]
Mitigate deadlock situation pending a more complete solution.

21 years agoAdded missing dependency on rc4.
ru [Fri, 21 Mar 2003 22:02:58 +0000 (22:02 +0000)]
Added missing dependency on rc4.

Reviewed by: imp

21 years agowlan module depends on rc4 module, so provide one.
ru [Fri, 21 Mar 2003 22:01:00 +0000 (22:01 +0000)]
wlan module depends on rc4 module, so provide one.

Reviewed by: imp

21 years agoFix some memory leaks in the failure cases after trying to look up the
jhb [Fri, 21 Mar 2003 21:49:52 +0000 (21:49 +0000)]
Fix some memory leaks in the failure cases after trying to look up the
OSF/1 runtime loader.  Also, use td_ucred instead of p_ucred.

Tested by: gallatin
Reviewed by: rwatson

21 years agoAdded support for 82541 and 82547 based adapters.
pdeuskar [Fri, 21 Mar 2003 21:47:31 +0000 (21:47 +0000)]
Added support for 82541 and 82547 based adapters.
 - These have Intel gigabit PHY
 - 82547 uses CSA interface

MFC after: 1 week

21 years agoSync up linux and svr compat elf fixup functions for exec(). These
jhb [Fri, 21 Mar 2003 19:49:34 +0000 (19:49 +0000)]
Sync up linux and svr compat elf fixup functions for exec().  These
functions are now all basically identical except that alpha linux uses
Elf64 arguments and svr4 and i386 linux use Elf32.  The fixups include
changing the first argument to be a register_t ** to match the prototype
for fixup functions, asserting that the process in the image_params struct
is always curproc and removing unnecessary locking to read credentials as a
result, and a few style fixes.

21 years ago- Use if_broadcastaddr from struct ifnet rather than relying on
mdodd [Fri, 21 Mar 2003 17:53:16 +0000 (17:53 +0000)]
- Use if_broadcastaddr from struct ifnet rather than relying on
  extern 'etherbroadcastaddr'.
- Make 'etherbroadcastaddr' static.

Reviewed by:  imp

21 years agoWhy doesn't anybody ever tell me anything? When did we get a libsbuf ?
phk [Fri, 21 Mar 2003 17:10:54 +0000 (17:10 +0000)]
Why doesn't anybody ever tell me anything?  When did we get a libsbuf ?

Geeze, I'll just crawl back into the kernel where I know what's going on...

Use libsbuf instead of pulling a file in from the kernel.

Taught by: jhb

21 years agoAdd a sysctl node allowing the specification of an address mask to use
mdodd [Fri, 21 Mar 2003 15:43:06 +0000 (15:43 +0000)]
Add a sysctl node allowing the specification of an address mask to use
when replying to ICMP Address Mask Request packets.

21 years agoAdd comments regarding the ICMP timestamp fields.
mdodd [Fri, 21 Mar 2003 15:28:10 +0000 (15:28 +0000)]
Add comments regarding the ICMP timestamp fields.

21 years agoAssignment could be NULL, check.
mdodd [Fri, 21 Mar 2003 15:13:29 +0000 (15:13 +0000)]
Assignment could be NULL, check.

21 years agoFixed a typo in ${.CURDIR} spelling, fatal on systems
ru [Fri, 21 Mar 2003 14:45:46 +0000 (14:45 +0000)]
Fixed a typo in ${.CURDIR} spelling, fatal on systems
without the /sys symlink pointing to the current tree.
(Revision 1.2 made it non-fatal, but anyway.)

Apply style.Makefile(5).

Fixed ``make checkdpadd''.

21 years agoAdded GEOM library to the bsd.libnames.mk namespace.
ru [Fri, 21 Mar 2003 14:31:51 +0000 (14:31 +0000)]
Added GEOM library to the bsd.libnames.mk namespace.

21 years agoDuh! Use correct number ../
phk [Fri, 21 Mar 2003 14:30:16 +0000 (14:30 +0000)]
Duh!  Use correct number ../

spotted by: imp

21 years agoUse the target arhitecture's disktab(5) file.
ru [Fri, 21 Mar 2003 13:41:17 +0000 (13:41 +0000)]
Use the target arhitecture's disktab(5) file.

21 years agoAdd a target for the creation of a /etc/shells map and add it to
robert [Fri, 21 Mar 2003 11:44:03 +0000 (11:44 +0000)]
Add a target for the creation of a /etc/shells map and add it to
the maps which are built by default.

21 years agoCall endwin() to restore terminal state just before exiting.
keramida [Fri, 21 Mar 2003 09:34:23 +0000 (09:34 +0000)]
Call endwin() to restore terminal state just before exiting.

Approved by: phk

21 years agoFollow new upcall quantum code in kernel.
davidxu [Fri, 21 Mar 2003 08:21:39 +0000 (08:21 +0000)]
Follow new upcall quantum code in kernel.

21 years agoMap VAPPEND to VWRITE in nfsspec_access() - VAPPEND is never set in the
tjr [Fri, 21 Mar 2003 05:13:23 +0000 (05:13 +0000)]
Map VAPPEND to VWRITE in nfsspec_access() - VAPPEND is never set in the
mode returned by VOP_GETATTR. This fixes incorrect "Permission denied"
errors when trying to append to a file on an NFSv2 mount.

21 years agoAttempt to automatically read in kernel module symbols when a live
iedowse [Fri, 21 Mar 2003 00:30:53 +0000 (00:30 +0000)]
Attempt to automatically read in kernel module symbols when a live
or dead kernel core is loaded into gdb. This extends gdb's existing
shared library support, so the "info sharedlibrary", "sharedlibrary"
and "nosharedlibrary" commands can be used to view and change the
list of loaded symbol files.

The current implementation is more than a kludge however, and it
will not always manage to find the .ko.debug file corresponding to
the loaded module. In particular, for modules whose build directory
cannot be easily guessed from the module name such as all the
netgraph modules, the debug version of the .ko will not be found
automatically.

The logic for finding the module file first attempts to guess at
the module build directory by parsing the version[] string. Then
using that directory ($DIR), it tries the following paths in turn:

./<module>.ko.debug ./<module>.ko
$DIR/<module>.ko.debug $DIR/<module>.ko
/boot/kernel/<module>.ko.debug /boot/kernel/<module>.ko

Approved by: obrien, mp

21 years agoPass the target machine architecture down to disklabel(8).
ru [Thu, 20 Mar 2003 23:46:22 +0000 (23:46 +0000)]
Pass the target machine architecture down to disklabel(8).
Do it so that systems without the -m option in disklabel(8),
e.g. 5.0-RELEASE, can still build current snapshots.

While here, drop the -s option from doFS.sh; we have not
been using the .size files for a long time.

21 years agoClean up some warnings that don't result in a change in the object file:
dwmalone [Thu, 20 Mar 2003 22:42:22 +0000 (22:42 +0000)]
Clean up some warnings that don't result in a change in the object file:
Constness, missing prototypes, non-ansi prototypes, missing
initialisers, unnecessary declarations, shadowing.

Reviewed by: md5

21 years agoUse td->td_ucred instead of td->td_proc->p_ucred.
jhb [Thu, 20 Mar 2003 21:17:40 +0000 (21:17 +0000)]
Use td->td_ucred instead of td->td_proc->p_ucred.

21 years agoMinor fixes to ffs_fserr():
jhb [Thu, 20 Mar 2003 21:15:54 +0000 (21:15 +0000)]
Minor fixes to ffs_fserr():
- Assume that curthread is not NULL.  It never is in -current.
- Use td_ucred instead of p_ucred.

21 years agoUse td_ucred of curthread instead of p_ucred of curproc. This required
jhb [Thu, 20 Mar 2003 21:12:31 +0000 (21:12 +0000)]
Use td_ucred of curthread instead of p_ucred of curproc.  This required
changing sem_perm() and sem_hasopen() to take a thread instead of a proc
for the first argument.

21 years agoMerge conflicts
jedgar [Thu, 20 Mar 2003 20:56:03 +0000 (20:56 +0000)]
Merge conflicts

21 years agoExtend CPU_ATHLON_SSE_HACK to cover a few more revisions of Athlon CPUs.
dwmalone [Thu, 20 Mar 2003 20:50:22 +0000 (20:50 +0000)]
Extend CPU_ATHLON_SSE_HACK to cover a few more revisions of Athlon CPUs.

Submitted by: Jon Kuster <kwsn@earthlink.net>
MFC after:    2 weeks

21 years agoAdd a rudimentary gstat(8) to the system.
phk [Thu, 20 Mar 2003 20:48:41 +0000 (20:48 +0000)]
Add a rudimentary gstat(8) to the system.

This is a small curses based program which shows the diskactivity
inside GEOM.

21 years agoThis commit was generated by cvs2svn to compensate for changes in r112439,
jedgar [Thu, 20 Mar 2003 20:41:45 +0000 (20:41 +0000)]
This commit was generated by cvs2svn to compensate for changes in r112439,
which included commits to RCS files with non-trunk default branches.

21 years agoImport of PKCS #1 security fix.
jedgar [Thu, 20 Mar 2003 20:41:45 +0000 (20:41 +0000)]
Import of PKCS #1 security fix.
  http://www.openssl.org/news/secadv_20030319.txt

21 years agoDistinguish between register sets that depend on ac97 caps (wr0, wr1,
orion [Thu, 20 Mar 2003 20:07:18 +0000 (20:07 +0000)]
Distinguish between register sets that depend on ac97 caps (wr0, wr1,
msgd) and those that don't (dxs0-3) when reporting format caps.

21 years agoUse atomic operations to increment and decrement the refcount
mux [Thu, 20 Mar 2003 19:45:26 +0000 (19:45 +0000)]
Use atomic operations to increment and decrement the refcount
in busdma tags.  There are currently no tags shared accross
different drivers so this isn't needed at the moment, but it
will be required when we'll have a proper newbus method to get
the parent busdma tag.

21 years agoNew release/errata notes: SA-03:05.
bmah [Thu, 20 Mar 2003 18:57:30 +0000 (18:57 +0000)]
New release/errata notes:  SA-03:05.

21 years agoCorrect vendor id for ALC101.
orion [Thu, 20 Mar 2003 18:17:39 +0000 (18:17 +0000)]
Correct vendor id for ALC101.

21 years agoAdd a -g option to specify a default login group.
mtm [Thu, 20 Mar 2003 16:36:03 +0000 (16:36 +0000)]
Add a -g option to specify a default login group.

Approved by: markm (mentor)(implicit)

21 years agoAdd support for OpenBSD extensions to the $CVSROOT/config syntax.
des [Thu, 20 Mar 2003 11:05:48 +0000 (11:05 +0000)]
Add support for OpenBSD extensions to the $CVSROOT/config syntax.

Approved by: peter
Obtained from: OpenBSD

21 years agoBackout the getcwd changes, a more comprehensive effort will be needed.
phk [Thu, 20 Mar 2003 10:40:45 +0000 (10:40 +0000)]
Backout the getcwd changes, a more comprehensive effort will be needed.

21 years agoEnable the FPU on first use per-thread and save state across context
grehan [Thu, 20 Mar 2003 10:28:20 +0000 (10:28 +0000)]
Enable the FPU on first use per-thread and save state across context
switches. Not as lazy as it could be. Changing FPU state with sigcontext
still TODO.

fpu.c - convert some asm to inline C, and macroize fpu loads/stores
swtch.S - call out to save/restore fpu routines
trap.c - always call enable_fpu, since this shouldn't be called once
         the FPU has been enabled for a thread
genassym.c - define for pcb fpu flag

21 years ago- Add PCI ID for Paddington i/o controller, used in old G3's
grehan [Thu, 20 Mar 2003 10:18:01 +0000 (10:18 +0000)]
- Add PCI ID for Paddington i/o controller, used in old G3's
- Add ID for the Intrepid i/o controller, used in new 12"/17" PowerBooks
- put IDs in chronological order

21 years agoAccording to C99 decimal_point can't be empty
ache [Thu, 20 Mar 2003 08:18:55 +0000 (08:18 +0000)]
According to C99 decimal_point can't be empty

21 years agoAccording to C99 decimal_point can't be the empty string, mention it.
ache [Thu, 20 Mar 2003 08:13:34 +0000 (08:13 +0000)]
According to C99 decimal_point can't be the empty string, mention it.

21 years agodecimal_point can't be "" according to C99, so set it to standard "."
ache [Thu, 20 Mar 2003 08:05:20 +0000 (08:05 +0000)]
decimal_point can't be "" according to C99, so set it to standard "."
in that case.

21 years agoCorrect typo in function declaration (s/if_dont/if_done).
ceri [Wed, 19 Mar 2003 22:27:21 +0000 (22:27 +0000)]
Correct typo in function declaration (s/if_dont/if_done).

PR: docs/50136
Submitted by: Scott Mitchell <scott+freebsd@fishballoon.org>
MFC After: 4.8

21 years agoThe flags passed in to _ftp_get_proxy may be null
mtm [Wed, 19 Mar 2003 21:39:00 +0000 (21:39 +0000)]
The flags passed in to _ftp_get_proxy may be null

Approved by: des, markm (mentor)(implicit)

21 years agoFix for ia64/48024 - ensure function pointer equality across elf
arun [Wed, 19 Mar 2003 21:38:27 +0000 (21:38 +0000)]
Fix for ia64/48024 - ensure function pointer equality across elf
objects.

Programs such as sshd depend on two pointers to the same function being
equal in a given process. However, the current ia64 implementation
ensures that they're equal when both the pointers are instantiated in
the same ELF object. The attached patch ensures that they're equal
irrespective of where they're instantiated.

Reviewed by marcel@ (mentor) and kan@

21 years agoEnable locale support in strtod() and dtoa().
das [Wed, 19 Mar 2003 20:25:45 +0000 (20:25 +0000)]
Enable locale support in strtod() and dtoa().

Noticed by: ache
Reviewed by: mike (mentor)

21 years agoThis commit was generated by cvs2svn to compensate for changes in r112415,
das [Wed, 19 Mar 2003 20:23:29 +0000 (20:23 +0000)]
This commit was generated by cvs2svn to compensate for changes in r112415,
which included commits to RCS files with non-trunk default branches.

21 years agoImport gdtoa sources dated 20030318, which contain several locale fixes.
das [Wed, 19 Mar 2003 20:23:29 +0000 (20:23 +0000)]
Import gdtoa sources dated 20030318, which contain several locale fixes.

Reviewed by: mike (mentor)

21 years agoFix typos
eivind [Wed, 19 Mar 2003 18:21:42 +0000 (18:21 +0000)]
Fix typos

21 years agoFix typo
eivind [Wed, 19 Mar 2003 18:14:47 +0000 (18:14 +0000)]
Fix typo

21 years agoRemove duplicates
eivind [Wed, 19 Mar 2003 17:55:17 +0000 (17:55 +0000)]
Remove duplicates

21 years agoFix typos
eivind [Wed, 19 Mar 2003 17:54:22 +0000 (17:54 +0000)]
Fix typos

21 years agoRefactor two sexual jokes to murphy-o
eivind [Wed, 19 Mar 2003 17:50:59 +0000 (17:50 +0000)]
Refactor two sexual jokes to murphy-o

21 years agoUpdate some more namespaces (forgotten in the previous revision).
mike [Wed, 19 Mar 2003 15:20:02 +0000 (15:20 +0000)]
Update some more namespaces (forgotten in the previous revision).