aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Make the tests work. libmp and libgmp must be installed for thisMark Murray1995-11-132-2/+68
| | | | | | | to work. Notes: svn path=/head/; revision=12264
* Build the TeXinfo manualMark Murray1995-11-131-0/+7
| | | | Notes: svn path=/head/; revision=12263
* 1) Add the doc/subdirectory - this will get gmp.texi installedMark Murray1995-11-131-21/+2
| | | | | | | 2) Clean up the Makefile - libgmp is coming! Notes: svn path=/head/; revision=12262
* Correctly spell Phnom Penh for tzsetup.Garrett Wollman1995-11-131-1/+1
| | | | Notes: svn path=/head/; revision=12261
* Try to make my new scheme work more along the lines of the manual.Poul-Henning Kamp1995-11-131-48/+67
| | | | | | | There are still some gray areas here and there. Notes: svn path=/head/; revision=12260
* Fixed up a comment and removed some #if 0'd code.David Greenman1995-11-131-8/+2
| | | | Notes: svn path=/head/; revision=12259
* Use kmem_alloc_pageable/kmem_free to allocate memory instead of individualDavid Greenman1995-11-131-19/+7
| | | | | | | VM map functions. Notes: svn path=/head/; revision=12258
* Added bogus casts to avoid compiler warnings.Bruce Evans1995-11-131-2/+3
| | | | Notes: svn path=/head/; revision=12257
* Fixed parentheses in macros.Bruce Evans1995-11-131-4/+4
| | | | Notes: svn path=/head/; revision=12256
* Replaced nosys() by lkm_nullcmd().Bruce Evans1995-11-132-3/+3
| | | | Notes: svn path=/head/; revision=12255
* Fixed the type of yet another timeout function.Bruce Evans1995-11-131-7/+8
| | | | | | | | | | Fixed the type of pcic_unload(). Replaced nosys() by lkm_nullcmd() in pcic_mod() and in a misplaced comment about the lkm interface. Notes: svn path=/head/; revision=12254
* Update the FAQ.Ollivier Robert1995-11-131-2/+10
| | | | | | | | | | | | | | | Is there anyone who could give me an account on a faster-than-20-bytes-per second line to the US (not EBONE) ? I'm having too many problems connecting to freefall to do commits... It would be better if it could be a ssh-protected account, that would give a strong authentication. The RENATER line (and thus EBONE) is almost dead for remote login after 10AM european time... :-( Thanks in advance. Notes: svn path=/head/; revision=12253
* Fixed a cast in olseek().Bruce Evans1995-11-132-6/+6
| | | | | | | Fixed confusing order of declarations of getvnode()'s args. Notes: svn path=/head/; revision=12252
* Fixed the type of a function pointer in struct execsw.Bruce Evans1995-11-131-2/+4
| | | | Notes: svn path=/head/; revision=12251
* Replaced nosys() by lkm_nullcmd(). Always call lkm load/unload/statBruce Evans1995-11-1324-54/+69
| | | | | | | | functions instead of skipping the call if the function is nosys(). nosys() returned the wrong value as well as having the wrong type. Notes: svn path=/head/; revision=12250
* Add Peter Wemm to core team.Jordan K. Hubbard1995-11-131-1/+2
| | | | Notes: svn path=/head/; revision=12248
* More helpful error messages.Jordan K. Hubbard1995-11-124-18/+24
| | | | Notes: svn path=/head/; revision=12245
* Put HTML files into data/ instead of htdocs/Jordan K. Hubbard1995-11-121-4/+4
| | | | Notes: svn path=/head/; revision=12244
* The entire sysctl callback to read/write version. I havn't tested this asPoul-Henning Kamp1995-11-127-136/+201
| | | | | | | | | | | much as I'd like to, but the malloc stunt I tried for an interim for sure does worse. Now we can read and write from any kind of address-space, not only user and kernel, using callbacks. This may be over-generalization for now, but it's actually simpler. Notes: svn path=/head/; revision=12243
* Removed reference to missing libmp in a comment. We have GNU MP now.Mark Murray1995-11-121-1/+1
| | | | Notes: svn path=/head/; revision=12242
* Removed reference to missing mp.h in comment. We have GNU MP now.Mark Murray1995-11-121-2/+1
| | | | Notes: svn path=/head/; revision=12241
* Move the setlogin() call a little earlier.. It was being done in the childPeter Wemm1995-11-121-4/+5
| | | | | | | | process - which would be no longer allowed if the setlogin() changes go through. Now the parent (the session leader, when started by inetd) does it. Notes: svn path=/head/; revision=12240
* Add /dev/random hooks to the key input routines for pcvt. This allowsMark Murray1995-11-122-1/+12
| | | | | | | | | the scancodes on a PCVT machine to be used as stochastic input as well as SysCons.. Reviewed by: Joerg Wunsch Notes: svn path=/head/; revision=12239
* Add libmpMark Murray1995-11-121-2/+2
| | | | Notes: svn path=/head/; revision=12238
* BMake the multiprecision library, and fix as many of the -Wall warningsMark Murray1995-11-124-278/+376
| | | | | | | as is now feasable. Notes: svn path=/head/; revision=12237
* GNU MP (Multiprecision) library. This is needed by secure RPC (beingMark Murray1995-11-12131-0/+16601
| | | | | | | | done by Bill Paul) and various other BSD programs. Obtained from:FSF Notes: svn path=/vendor/misc-GNU/dist2/; revision=12234
* Some additional cosmetic tweaks.Jordan K. Hubbard1995-11-121-3/+2
| | | | Notes: svn path=/head/; revision=12233
* Initialize ld.so.hints if necessary.Jordan K. Hubbard1995-11-122-2/+10
| | | | Notes: svn path=/head/; revision=12232
* Brought in the setattr call support from Lite-2 so that more correct errorDavid Greenman1995-11-122-6/+76
| | | | | | | | | returns are provided. Obtained from: 4.4BSD-Lite2 Notes: svn path=/head/; revision=12230
* Fix isoilk hang caused by not checking for read-onlyness in several places.David Greenman1995-11-124-6/+38
| | | | | | | | | The fix for this in Lite-2 is more complete, but these quick hacks of mine are safer for now. I plan to integrate the additional Lite-2 stuff at some later time. Should completely fix PR810. Notes: svn path=/head/; revision=12228
* Moved vm_map_lock call to inside the splhigh protection in vm_map_find().David Greenman1995-11-121-2/+2
| | | | | | | | | | | This closes a probably rare but nonetheless real window that would result in a process hanging or the system panicing. Reviewed by: dyson, davidg Submitted by: kato@eclogite.eps.nagoya-u.ac.jp (KATO Takenori) Notes: svn path=/head/; revision=12226
* Bring Jordan's 2.1 dependancy fixes into current.Mark Murray1995-11-124-8/+8
| | | | | | | | Incorporate some dependancy fixes from John Hay Submitted by: jkh, John Hay<jhay@mikom.csir.co.za> Notes: svn path=/head/; revision=12225
* Make editor start on right screen for anonFTP setup.Jordan K. Hubbard1995-11-123-6/+18
| | | | | | | Don't clobber mediaDevice if post-configuring networking from CDROM. Notes: svn path=/head/; revision=12224
* Oops, forgot the following log message in the previous commit:Bruce Evans1995-11-122-2/+2
| | | | | | | | | | | | | | Included <sys/sysproto.h> to get central declarations for syscall args structs and prototypes for syscalls. Ifdefed duplicated decentralized declarations of args structs. It's convenient to have this visible but they are hard to maintain. Some are already different from the central declarations. 4.4lite2 puts them in comments in the function headers but I wanted to avoid the large changes for that. Notes: svn path=/head/; revision=12223
* Restored the (buggy) historical behaviour of getdomainname().Bruce Evans1995-11-121-6/+6
| | | | | | | | Negative name lengths for getdomainname() and setdomainname() were converted to large positive ones by misdeclaring the args struct. Notes: svn path=/head/; revision=12222
* Included <sys/sysproto.h> to get central declarations for syscall argsBruce Evans1995-11-1221-20/+411
| | | | | | | | | | | | | structs and prototypes for syscalls. Ifdefed duplicated decentralized declarations of args structs. It's convenient to have this visible but they are hard to maintain. Some are already different from the central declarations. 4.4lite2 puts them in comments in the function headers but I wanted to avoid the large changes for that. Notes: svn path=/head/; revision=12221
* Reviewed by:Bruce Evans1995-11-122-2/+8
| | | | | | | | Submitted by: Obtained from: Notes: svn path=/head/; revision=12220
* Bring my pkg_install improvements forward from 2.1.Jordan K. Hubbard1995-11-125-106/+117
| | | | Notes: svn path=/head/; revision=12219
* Added (null for the i386) conversions from ibcs2's bogus fcntl argsBruce Evans1995-11-121-9/+10
| | | | | | | struct to the standard bogus fcntl args struct. Notes: svn path=/head/; revision=12218
* Updated machine-generated files.Bruce Evans1995-11-125-14/+14
| | | | Notes: svn path=/head/; revision=12217
* Fixed the args list for mount(). We're not ready for the BSD4.4lite2/Bruce Evans1995-11-121-10/+35
| | | | | | | | | | | | | | | | | | | | | | | | NetBSD interface. Increased the bogusness of the args list for mmap(). The args lists for most of the memory mapping functions are bogus. The args lists in syscalls.master are a little better than the ones in the args structs currently being used, but the improvement for mmap() changed the object code and I don't want to worry about that now. Increased the bogusness of the args list for fcntl. BSD4.4lite2/NetBSD uses `void *' instead of int for the third arg. This has the advantage of working when `void *'s are longer than ints, but requires extra bogus casts that I hope to avoid. Fixed the args list for uname. `struct outsname' seems to be a typo, not an old interface. Added comments about bogus args lists for open, mount, msync, munmap, mprotect, madvise, mincore, fcntl, semsys, msgsys and shmsys. Notes: svn path=/head/; revision=12216
* Add verbosity to add in tracking a mystery sig-11 with this..Jordan K. Hubbard1995-11-112-118/+86
| | | | Notes: svn path=/head/; revision=12214
* Fix some missing parameters to the anon ftp setup area.Jordan K. Hubbard1995-11-112-10/+10
| | | | Notes: svn path=/head/; revision=12213
* Various cosmetic tweaks.Jordan K. Hubbard1995-11-112-10/+10
| | | | Notes: svn path=/head/; revision=12210
* Write a quick help screen for this. Coranth seems to have an aversionJordan K. Hubbard1995-11-112-0/+38
| | | | | | | to writing help files.. :) Notes: svn path=/head/; revision=12209
* Fixed the type of readv(). An args struct member name conflicted with theBruce Evans1995-11-111-5/+5
| | | | | | | machine-generated one in <sys/sysproto.h>. Notes: svn path=/head/; revision=12208
* Fixed type of setsid(). It used used the bogus `getsid_args'.Bruce Evans1995-11-111-3/+3
| | | | Notes: svn path=/head/; revision=12207
* Fixed type of obreak(). The args struct member name conflicted withBruce Evans1995-11-111-3/+3
| | | | | | | the (better) machine generated one in <sys/sysproto.h>. Notes: svn path=/head/; revision=12206
* Removed unreachable code.Bruce Evans1995-11-111-6/+5
| | | | | | | Changed `#if defined()' back to `#ifdef' to finish removing COMPAT_IBCS2. Notes: svn path=/head/; revision=12205
* Cleaned up after moving the prototypes:Bruce Evans1995-11-111-192/+78
| | | | | | | | | | | | | - collapsed #if-#elses that became null. - removed dead comments. Moved #defines that always have the same value to the tables. Collapsed more #if-#elses that became null. None are left. Removed repetitive comments. Notes: svn path=/head/; revision=12204