Re: bluetooth

2001-10-03 Thread Nicolai Petri
Hi Warner, I've seen cards for sale on http://www.digianswer.dk (Motorola's Bluetooth center), the price is 200$ for a retail pccard. Best regards, - Nicolai Petri - Original Message - From: "Warner Losh" <[EMAIL PROTECTED]> To: "John Kozubik" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>

Re: 4.3 vs 4.4

2001-10-03 Thread Will Andrews
On Wed, Oct 03, 2001 at 07:11:13PM -0400, [EMAIL PROTECTED] wrote: > Thanks for the pointer, and not to the other fellow ([EMAIL PROTECTED]) who > chose to just make a snide remark. Snide? That's what you call snide? Wow, I'd hate to hear what you consider only to be the doing of a true jerk.

4.2 pkg_add/pkg_delete inconsistency

2001-10-03 Thread Romain Kang
Has anyone else noticed the following inconsistency? Some packages have been having problems related to @exec and @unexec statements and the %D sequence. I think this happens because contrary to the pkg_create man page, it appears that %D is expanded for @exec, but not for @unexec. (This seems

Re: hardware watch point support

2001-10-03 Thread Brian Dean
Seems to work ok for a simple test case I just tried with 4-STABLE (post 4.4-RELEASE). I don't have a 4.3-RELEASE box to test, but it should work there too. -Brian On Wed, Oct 03, 2001 at 04:24:26PM -0400, Zhihui Zhang wrote: > Does FreeBSD 4.3-release support hardware watchpoint? If so, how

Re: bluetooth

2001-10-03 Thread Warner Losh
In message <[EMAIL PROTECTED]> John Kozubik writes: : I had a feeling if anyone was looking into it that you were - if nobody : else is looking at it, I'll start working. I have a 3com and a xircom. : Please keep this in mind if you hear of anyone on (or starting on) a : similar track, and I w

Re: bluetooth

2001-10-03 Thread Maksim Yevmenkin
> Is anyone working on bluetooth drivers and accompanying userland programs > (bluetooth equivalents of wicontrol, etc.) ? ok :) i'm actually working on BlueTooth stack for FreeBSD. so far i have some code that implements basic functionality for HCI layer. the implementation is based on Netgraph

Re: bluetooth

2001-10-03 Thread John Kozubik
I had a feeling if anyone was looking into it that you were - if nobody else is looking at it, I'll start working. I have a 3com and a xircom. Please keep this in mind if you hear of anyone on (or starting on) a similar track, and I will watch -mobile. - John Kozubik - [EMAIL PROTECTED] -

Re: if_sf bug

2001-10-03 Thread Bsdguru
In a message dated 10/03/2001 8:14:30 PM Eastern Daylight Time, [EMAIL PROTECTED] writes: > > The if_sf driver doesnt seem to initialize itself until an address is set, > > which makes things like tcpdump, bridging and other promiscuous things not > > work. > > All the interfaces do that.

Re: bluetooth

2001-10-03 Thread Warner Losh
In message <[EMAIL PROTECTED]> John Kozubik writes: : Is anyone working on bluetooth drivers and accompanying userland programs : (bluetooth equivalents of wicontrol, etc.) ? I tried to get a bluetooth pcmcia card, but I haven't been able to win one on ebay or find one availble through more norm

Re: 4.3 vs 4.4

2001-10-03 Thread Warner Losh
In message <[EMAIL PROTECTED]> [EMAIL PROTECTED] writes: : Is there a delta/changes sheet in what 4.4 offers? http://www.freebsd.org/ has a link to the release notes. Warner To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: setjmp/longjmp

2001-10-03 Thread Greg Lehey
On Wednesday, 3 October 2001 at 12:12:14 -0700, Julian Elischer wrote: > I suppose it must have been Peter Penchev who wrote: >> On Wednesday, October 03, 2001 6:14 AM, Greg Lehey <[EMAIL PROTECTED]> wrote: >>> On Tuesday, 2 October 2001 at 12:43:54 -0700, Julian Elischer wrote: On Tue, 2

bluetooth

2001-10-03 Thread John Kozubik
Is anyone working on bluetooth drivers and accompanying userland programs (bluetooth equivalents of wicontrol, etc.) ? I see nothing at freshmeat.net, release notes, or on related freebsd-* lists. I have some free time in the next few months and would like to work on them, but I would rather no

Re: if_sf bug

2001-10-03 Thread Doug White
On Wed, 3 Oct 2001 [EMAIL PROTECTED] wrote: > The if_sf driver doesnt seem to initialize itself until an address is set, > which makes things like tcpdump, bridging and other promiscuous things not > work. All the interfaces do that. If you want to make an invisible interface, configure it with

if_sf bug

2001-10-03 Thread Bsdguru
The if_sf driver doesnt seem to initialize itself until an address is set, which makes things like tcpdump, bridging and other promiscuous things not work. Im sure B.P. will know where the safest place to put an sf_init to fix this (I just stuffed one in on SIFFLAGS but it may not handle all

Re: 4.3 vs 4.4

2001-10-03 Thread Bsdguru
In a message dated 10/03/2001 3:55:16 PM Eastern Daylight Time, [EMAIL PROTECTED] writes: > > Is there a delta/changes sheet in what 4.4 offers? > > http://www.freebsd.org/releases/4.4R/notes.html > > or track the CVS tree :) > Thanks for the pointer, and not to the other fellow ([EMA

Re: Question about pthread

2001-10-03 Thread Chad David
On Thu, Oct 04, 2001 at 04:40:07AM +0800, Oleg Golovanov wrote: > Dear Sirs: > > I am using FreeBSD-2.2.8 and after calling pthread_create() > my programs get sigfault (SIGSEGV) and exited with core dump. > > I should like to ask if somebody know the solve of this problem. > My example of using

Re: Question about pthread

2001-10-03 Thread Chris Costello
On Wednesday, October 03, 2001, Chris Costello wrote: >Because you're passing the _address_ of `confd', not the Er, sorry, `connfd' _is_ the address to a value (it's a pointer). But you're still passing an address, and I believe what I posted will solve the problem. -- +

Re: Question about pthread

2001-10-03 Thread Chris Costello
On Thursday, October 04, 2001, Oleg Golovanov wrote: > static void *coms(void *arg) > { > pthread_detach(pthread_self()); > write((int)arg, "Test", sizeof("test")); > close((int)arg); > return(NULL); > } For starters, this function should be rewritten as static void *coms(void *arg) {

Question about pthread

2001-10-03 Thread Oleg Golovanov
Dear Sirs: I am using FreeBSD-2.2.8 and after calling pthread_create() my programs get sigfault (SIGSEGV) and exited with core dump. I should like to ask if somebody know the solve of this problem. My example of using pthread is included below. I ask to answer me directly on my e-mail. Oleg -

hardware watch point support

2001-10-03 Thread Zhihui Zhang
Does FreeBSD 4.3-release support hardware watchpoint? If so, how to enable it? I tried something like: (gdb) watch * 0xc28374d0 Hardware watchpoint 4: * 3263395024 (gdb) watch * (int32_t *) 3263427792 Hardware watchpoint 5: *(int32_t *) 3263427792 But it does not seem to work well. Instead, I h

Re: 4.3 vs 4.4

2001-10-03 Thread Chris Faulhaber
On Wed, Oct 03, 2001 at 02:44:06PM -0400, [EMAIL PROTECTED] wrote: > > Is there a delta/changes sheet in what 4.4 offers? > Try the release notes. -- Chris D. Faulhaber - [EMAIL PROTECTED] - [EMAIL PROTECTED] FreeBSD: The Power To Serv

Re: pkg_create help needed.

2001-10-03 Thread Terry Lambert
Julian Elischer wrote: > > I need to take a directory of 'stuff' > which includes a script install.sh > and make it into a package.. > I have had some success but it's not quite right.. > > What I'd like to make it do is: > unpack the 'stuff' into a temporary directory somewhere. > run the i

Re: VM: file swapping (this time in libc): patch

2001-10-03 Thread Vladimir Dozen
ehlo. > I once had a patch to phkmalloc() which backed all malloc'ed VM with > hidden files in the users homedir. It was written to put the VM > usage under QUOTA control, but it had many useful side effects as well. > > I can't seem to find it right now, but it is trivial to do: just > replace

Re: Memory allocation question

2001-10-03 Thread Terry Lambert
Dwayne wrote: > I'm creating an app where I want to use memory to store data so I > can get at it quickly. The problem is, I can't afford the delays that > would occur if the memory gets swapped out. Is there any way in FreeBSD > to allocate memory so that the VM system won't swap it out? Al

4.3 vs 4.4

2001-10-03 Thread Bsdguru
Is there a delta/changes sheet in what 4.4 offers? To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: ALT- (Was: how to make 'for' understand two words as a singleargumen)

2001-10-03 Thread David Scheidt
On Tue, 2 Oct 2001, Greg Shenaut wrote: > Just out of curiosity, what would be an instance where you have > wanted a space in a filename and wouldn't have been satisfied with > 0xa0 instead of 0x20? All the times my file names have actual information in them? If I want to create a file with a

Re: setjmp/longjmp

2001-10-03 Thread Julian Elischer
basically it's just that pre-emtion just muddies the waters more.. On Wed, 3 Oct 2001, Anjali Kulkarni wrote: > Right, that was my question too, doesent seem connected with pre-emptive > kernels... > > - Original Message - > From: "Greg Lehey" <[EMAIL PROTECTED]> > To: "Julian Elische

Re: patch #3 (was Re: bleh. Re: ufs_rename panic)

2001-10-03 Thread Zhihui Zhang
On Wed, 3 Oct 2001, Ken Pizzini wrote: > Zhihui Zhang <[EMAIL PROTECTED]> wrote: > > (3) Matt says "For example, if you have two hardlinked files residing in > > different directories both get renamed simultaniously, one of the > > rename()s can fail even though there is no conflict >

Re: patch #3 (was Re: bleh. Re: ufs_rename panic)

2001-10-03 Thread Matt Dillon
:The addition of the SOFTLOCKLEAF code is quite a major change, so :it would be very useful if you could describe exactly what it does, :what its semantics are, and how it fits into the rename problem. Setting SOFTLOCKLEAF in namei will set the VSOFTLOCK flag in the returned vnode (whethe

Re: patch #3 (was Re: bleh. Re: ufs_rename panic)

2001-10-03 Thread Matt Dillon
:The rename routine is probably the most convoluted in the entire file :system code (FFS). Now that everybody's memory is fresh, I would like to :ask something about it: : :(1) I am always wondering why not use a global rename lock so that there :is only one rename operation in progress at an

Re: ALT- (Was: how to make 'for' understand two words as a singleargumen)

2001-10-03 Thread Michael Sinz
Warner Losh wrote: > > In message <[EMAIL PROTECTED]> Greg Shenaut writes: > : But you have to admit, space is a character that has caused many > : problems in Unix filenames, because of the other Unix tradition of > : space-delimited word record handling. I usually use an underscore, > : myself

Re: patch #3 (was Re: bleh. Re: ufs_rename panic)

2001-10-03 Thread Zhihui Zhang
The rename routine is probably the most convoluted in the entire file system code (FFS). Now that everybody's memory is fresh, I would like to ask something about it: (1) I am always wondering why not use a global rename lock so that there is only one rename operation in progress at any time

Re: ALT- (Was: how to make 'for' understand two words as a single argumen)

2001-10-03 Thread Daniel C. Sobral
Greg Shenaut wrote: > > Right. Easiest is not necessarily best, in this case for exactly > your reason. If you want a space in a filename, the Unix tradition > clearly favors your having one. > > But you have to admit, space is a character that has caused many > problems in Unix filenames, bec

Re: patch #3 (was Re: bleh. Re: ufs_rename panic)

2001-10-03 Thread Ian Dowse
In message <[EMAIL PROTECTED]>, Matt Dillon writes: > >:This seems rather large compared to Ian Dowse's version.. Are you sure that >:you're doing this the right way? Adding a whole new locking mechanism >:when the simple VRENAME flag to be enough seems like a bit of overkill.. Matt addresses t

Arp and two pccard NICs

2001-10-03 Thread Gavin Kenny
Hi, I have upgraded to 4.4 and I am trying to get my two pccard NICs to work at the same time. I've done some investigateing, but I'm not sure where to go next. both cards are the same make; Xircom 10/100 and both are detected and correctly configured upon insertion. I can assign IP addresses t