Re: namespace pollution with struct thread?

2001-11-13 Thread Bruce Evans
On 14 Nov 2001, Dag-Erling Smorgrav wrote: > One other thing worth pointing out is that there is no reason for > to include . It just needs to declare struct > proc as an opaque structure. I tried removing it a moth or two ago, but gave up. There was too much secondary namespace pollution tha

Re: USB and -current

2001-11-13 Thread Peter Wemm
Julian Elischer wrote: > I haven't been able to find the usb mailing list > where's it gone? > > I've been trying ot run some USB programs > specifically gphoto2 > and I came to the conclusion that there may be some incompatibility > in the libusb layer.. > > since then I discovered that t

Re: namespace pollution with struct thread?

2001-11-13 Thread Julian Elischer
On 14 Nov 2001, Dag-Erling Smorgrav wrote: > > One other thing worth pointing out is that there is no reason for > to include . It just needs to declare struct > proc as an opaque structure. Also, currently pulls in a > lot of other headers such as and that are > needed only because depe

USB and -current

2001-11-13 Thread Julian Elischer
I haven't been able to find the usb mailing list where's it gone? I've been trying ot run some USB programs specifically gphoto2 and I came to the conclusion that there may be some incompatibility in the libusb layer.. since then I discovered that there are TWO libusb's.. One from NetBSD

Re: SCSI->IDE

2001-11-13 Thread David Bushong
Though this is sure to invoke "_you_ try it and tell _us_"... Anyone gotten tosha to work with this? Since cdd broke and dagrab is worthless quality-wise, AFAICT, and the cdparanoia port to *BSD isn't done... I'm left without a good way to rip. --David Bushong On Tue, Nov 13, 2001 at 12:25:3

Re: namespace pollution with struct thread?

2001-11-13 Thread Dag-Erling Smorgrav
John Baldwin <[EMAIL PROTECTED]> writes: > On 12-Nov-01 Julian Elischer wrote: > > On the other hand we might conceivably be able to > > stop the export from the kernel of this struct type. > Not unless we stop exporting struct proc since each proc has an > embedded thread. We don't really need

Re: Report on FreeBSD 4.4 pthread implementation verses boehm-gc

2001-11-13 Thread Loren James Rittle
In article <[EMAIL PROTECTED]>, Daniel Eischen <[EMAIL PROTECTED]> writes: > [ Followups to -current ] >> [...] However, this work has uncovered either a rare race condition >> in the 4.X pthread implementation (also seen on a current 5.0 >> system) or a bad assumption in the GC signal code (abs

Re: daily run output & passwd diff

2001-11-13 Thread Giorgos Keramidas
On 2001-11-13 15:31:02, Crist J. Clark wrote: > > echo "$host passwd diffs:" > - diff $bak/master.passwd.bak /etc/master.passwd |\ > - sed 's/^\([<>] [^#][^:]*\):[^:]*:/\1:(password):/' > + diff -I '^#' $bak/master.passwd.bak /etc/m

Re: daily run output & passwd diff

2001-11-13 Thread Crist J. Clark
On Tue, Nov 13, 2001 at 02:31:48PM -0800, John Baldwin wrote: > > On 13-Nov-01 Robert Watson wrote: > > > > On Tue, 13 Nov 2001, John Baldwin wrote: > > > >> > My temptation would actually be to ignore any commented lines in either > >> > file for the purposes of the diff. For the purposes of

A Great Site to Check Out!!!

2001-11-13 Thread Newsletter
Hello! I am writing to tell you about a great web site to visit. The name of the site is Teen Graffiti, and you can find it at http://www.teengraffiti.com. This site has many opportunities and resources for parents and teens. S

Re: initgroups

2001-11-13 Thread John Baldwin
On 13-Nov-01 Terry Lambert wrote: > John Baldwin wrote: >> >> return (setgruops(ngroups, groups)); >> > return (setgroups(ngroups, groups)); >> > >> > (avoiding cut-and-paste error). >> >> Yes, my mailer eats tabs and sucks as is well documented, the point was the >> ()'s. :) >

Re: struct thread

2001-11-13 Thread Jan Stocker
No, ive removed the include, and it compiled and runs very good. Jan On Tue, 2001-11-13 at 22:45, Julian Elischer wrote: > do they need user.h? > > > On 13 Nov 2001, Jan Stocker wrote: > > > Wine includes sys/user.h which includes sys/proc.h. The configure skript > > determines the existen

Re: initgroups

2001-11-13 Thread Terry Lambert
John Baldwin wrote: > >> return (setgruops(ngroups, groups)); > > return (setgroups(ngroups, groups)); > > > > (avoiding cut-and-paste error). > > Yes, my mailer eats tabs and sucks as is well documented, the point was the > ()'s. :) I didn't fix the tabs; I fixed the typo; I li

Re: daily run output & passwd diff

2001-11-13 Thread John Baldwin
On 13-Nov-01 Robert Watson wrote: > > On Tue, 13 Nov 2001, John Baldwin wrote: > >> > My temptation would actually be to ignore any commented lines in either >> > file for the purposes of the diff. For the purposes of security checking, >> > you care mostly about the uncommented lines. This w

Re: initgroups

2001-11-13 Thread John Baldwin
On 13-Nov-01 Terry Lambert wrote: > John Baldwin wrote: >> > + return setgroups(ngroups, groups); >> > } >> >> Style nit: >> >> return (setgruops(ngroups, groups)); > > > return (setgroups(ngroups, groups)); > > (avoiding cut-and-paste error). Yes, my mailer eats tabs a

Re: initgroups

2001-11-13 Thread Terry Lambert
John Baldwin wrote: > > + return setgroups(ngroups, groups); > > } > > Style nit: > > return (setgruops(ngroups, groups)); return (setgroups(ngroups, groups)); (avoiding cut-and-paste error). -- Terry To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe free

Re: initgroups

2001-11-13 Thread Terry Lambert
Max Khon wrote: > > hi, there! > > Any objections if I will commit the following patch (see PR/15421)? Can setgroups return a positive number? If so, you've just changed the semantics of the funtion; before, it used to return 0 on 0 or a positive number. Also, is removing the _warn() really t

Re: daily run output & passwd diff

2001-11-13 Thread Robert Watson
On Tue, 13 Nov 2001, John Baldwin wrote: > > My temptation would actually be to ignore any commented lines in either > > file for the purposes of the diff. For the purposes of security checking, > > you care mostly about the uncommented lines. This would allow the script > > to exclude content

Re: daily run output & passwd diff

2001-11-13 Thread John Baldwin
On 13-Nov-01 Robert Watson wrote: > > On Mon, 12 Nov 2001, John Baldwin wrote: > >> >> What if someone comments out a line in the password file of a user? >> Then this won't hide that password. When this originally went in, it >> took a long while to get a sed line people were happy with. R

Re: struct thread

2001-11-13 Thread Julian Elischer
do they need user.h? On 13 Nov 2001, Jan Stocker wrote: > Wine includes sys/user.h which includes sys/proc.h. The configure skript > determines the existence, but it isnt really needed to compile Maybe > other systems defines here some needful stuff which is included > somewhere else in Fre

Re: loader from Nov 13 reboots instantly

2001-11-13 Thread Robert Watson
It's probably the awk bug. You need to use /boot/loader.old to boot the system, build and install a fresh awk (gnu awk), then build and install a fresh loader. You don't get bitten by this until the second upgrade after the bad awk version was introduced, since the awk used to build the loader i

Re: daily run output & passwd diff

2001-11-13 Thread Robert Watson
On Mon, 12 Nov 2001, John Baldwin wrote: > > What if someone comments out a line in the password file of a user? > Then this won't hide that password. When this originally went in, it > took a long while to get a sed line people were happy with. Replacing > the version number is a minor thin

Re: struct thread

2001-11-13 Thread Jan Stocker
Wine includes sys/user.h which includes sys/proc.h. The configure skript determines the existence, but it isnt really needed to compile Maybe other systems defines here some needful stuff which is included somewhere else in FreeBSD? Jan On Tue, 2001-11-13 at 21:32, Julian Elischer wrote: >

Building a Machine

2001-11-13 Thread Steven J Corso
Is there a problem with building a new freebsd current system of the disk set? I do not see to be able to accomplish this due to the fact that none of the file systems mount (except root) as part of the configuration setup process. I have had this problem with 11/07/01, 11/10/01, & 11/11/01. I

Re: PATCH: sysinstall to remove userconfig code

2001-11-13 Thread John Baldwin
On 13-Nov-01 Cyrille Lefevre wrote: > John Baldwin wrote: >> On 13-Nov-01 Cyrille Lefevre wrote: >> > Makoto Matsushita wrote: >> >> >> >> Userconfig was gone in 5-current, so we can safely remove kget() from >> >> sysinstall. Attached below is a patch to do (kget.c should be remove >> >> also)

Re: PATCH: sysinstall to remove userconfig code

2001-11-13 Thread Cyrille Lefevre
John Baldwin wrote: > On 13-Nov-01 Cyrille Lefevre wrote: > > Makoto Matsushita wrote: > >> > >> Userconfig was gone in 5-current, so we can safely remove kget() from > >> sysinstall. Attached below is a patch to do (kget.c should be remove > >> also). > > > > I don't know -current. what is the

Re: struct thread

2001-11-13 Thread Julian Elischer
The trouble is that proc.h is not supposed to be exporting anything to userland.. (with the exception of hacks like 'ps' but they are a special category. It is kernel internal definitions.. Why is wine including it? If there is something in it that is needed by wine then we need to think about

Re: initgroups

2001-11-13 Thread David Malone
On Wed, Nov 14, 2001 at 02:19:56AM +0600, Max Khon wrote: > Any objections if I will commit the following patch (see PR/15421)? Does the man page need a note about setting errno? David. To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the

RE: initgroups

2001-11-13 Thread John Baldwin
On 13-Nov-01 Max Khon wrote: > hi, there! > > Any objections if I will commit the following patch (see PR/15421)? > > Index: initgroups.c > === > RCS file: /home/ncvs/src/lib/libc/gen/initgroups.c,v > retrieving revision 1.4 > diff

initgroups

2001-11-13 Thread Max Khon
hi, there! Any objections if I will commit the following patch (see PR/15421)? Index: initgroups.c === RCS file: /home/ncvs/src/lib/libc/gen/initgroups.c,v retrieving revision 1.4 diff -u -r1.4 initgroups.c --- initgroups.c2

Re: PATCH: sysinstall to remove userconfig code

2001-11-13 Thread John Baldwin
On 13-Nov-01 Cyrille Lefevre wrote: > Makoto Matsushita wrote: >> >> Userconfig was gone in 5-current, so we can safely remove kget() from >> sysinstall. Attached below is a patch to do (kget.c should be remove >> also). > > I don't know -current. what is the feature which replace kget ? > doe

Re: PATCH: sysinstall to remove userconfig code

2001-11-13 Thread Cyrille Lefevre
Makoto Matsushita wrote: > > Userconfig was gone in 5-current, so we can safely remove kget() from > sysinstall. Attached below is a patch to do (kget.c should be remove > also). I don't know -current. what is the feature which replace kget ? does boot -c (or whatever) still exists ? is it poss

Copy DVD's to CDR -dpmshdluhr

2001-11-13 Thread henry8894
Title: dvd-ad     Wish You Could Copy DVD Movies? Now You Can!   Click Here For Details           ===REMOVE ME

struct thread

2001-11-13 Thread Jan Stocker
FYI: Ive posted an article to comp.emulators.ms-windows.wine about compiling errors for wine. This is caused by an redefinition of "struct thread". This is the state at present: From: [EMAIL PROTECTED] (Steven G. Kargl) Subject: Re: Compile errors with FreeBSD 5.0 Newsgroups: comp.emulators.ms-

RE: loader from Nov 13 reboots instantly

2001-11-13 Thread John Baldwin
On 13-Nov-01 [EMAIL PROTECTED] wrote: > I just rebuild my -current system. > > On executing /boot/loader the system rebooted instantly I have no > idea what kind of debugging infos I might send, so I send the dmesg as a > first idea (booted with loader.old). The system never gave me any > t

Re: Need help with 5.0-CURRENT on Sony VAIO Z505s

2001-11-13 Thread Ollivier Robert
According to Vladimir B. Grebenschikov: > - pccard: > > Only way to use any pccard device is to insert it before poweron > If I try to insert or eject card on the fly system completely freezes. Have you hardcoded an irq for the pccard controller? I've found in the past that it helped on my

loader from Nov 13 reboots instantly

2001-11-13 Thread Mathias . Picker
I just rebuild my -current system. On executing /boot/loader the system rebooted instantly I have no idea what kind of debugging infos I might send, so I send the dmesg as a first idea (booted with loader.old). The system never gave me any troubles, I'm recompiling -current about once every

PATCH: sysinstall to remove userconfig code

2001-11-13 Thread Makoto Matsushita
dsyphers> DEBUG: kget: error buffer sizing matusita> This is because sysinstall still want to get userconfig data matusita> and put the result to /boot/kernel.conf. Userconfig was gone in 5-current, so we can safely remove kget() from sysinstall. Attached below is a patch to do (kget.c should b

Re: kget problem during install

2001-11-13 Thread Makoto Matsushita
Again, 'disk full' problem is already disappeard in recent 5-current. But: dsyphers> DEBUG: kget: error buffer sizing This is because sysinstall still want to get userconfig data and put the result to /boot/kernel.conf. dsyphers> [: : out of range dsyphers> [: : out of range dsyphers> acd0t

Re: Install (stand/sysintsall) woes

2001-11-13 Thread Hiroo ONO
As Makoto Matusita writes: $ Would you please try a newer (Nov/12/2001 or later) snapshot? > clean install was necessary. I downloaded kern.flp and mfsroot.flp from > november 9th, booted, started an ftp install. Eveything went smooth through > newfs. Then three error messages appeared: "Una

[no subject]

2001-11-13 Thread Christopher Sharp
subscribe freebsd-current [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: SCSI->IDE

2001-11-13 Thread Thomas Quinot
Le 2001-11-13, Stijn Hoop écrivait : > Just curious, but how is the patch progressing? For the moment I am expecting feedback from the testers who have reported problems booting with the patch (esp. on SMP machines). > Can I try this out on a -STABLE system somehow? Yes, the patch available fr

Re: SCSI->IDE

2001-11-13 Thread Stijn Hoop
Just curious, but how is the patch progressing? Can I try this out on a -STABLE system somehow? --Stijn -- "I used to think I was indecisive, but now I'm not so sure." To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: daily run output & passwd diff

2001-11-13 Thread Crist J. Clark
On Mon, Nov 12, 2001 at 10:19:31PM -0800, John Baldwin wrote: > > On 13-Nov-01 Crist J. Clark wrote: > >> What if someone comments out a line in the password file of a user? Then > >> this > >> won't hide that password. When this originally went in, it took a long > >> while > >> to get a sed l