Re: mmap limits (was: need help)

2001-08-10 Thread Alexey Zakirov
On Fri, 10 Aug 2001, Greg Lehey wrote: i can't mmap files infinitely, after some number of file mmaped in memory i've got an error, probably causing memory limit of 2 or 4 Gb. can you help me? my platform is FreeBSD 4.3/i386 [128Mb RAM, 4Gb swap]. You'll get more replies with an

RE: Ghostscript 6.51 + HP printer = WOW!

2001-08-10 Thread Daniel O'Connor
On 10-Aug-2001 Poul-Henning Kamp wrote: The new ghostscript 6.51 has integrated the HPIJS backends for HP printers. HPIJS is written by HP and contains most of their weird colormunging technologies. I managed to compile a 6.51 yesterday and ran it on my HP1220C printer and I can

Re: Ghostscript 6.51 + HP printer = WOW!

2001-08-10 Thread Poul-Henning Kamp
In message [EMAIL PROTECTED], Daniel O'Connor writes: On 10-Aug-2001 Poul-Henning Kamp wrote: The new ghostscript 6.51 has integrated the HPIJS backends for HP printers. HPIJS is written by HP and contains most of their weird colormunging technologies. I managed to compile a 6.51

Re: need help

2001-08-10 Thread Terry Lambert
smail wrote: Hello freebsd-hackers, i need some help. my problem is about memory limit in mmap function. i can't mmap files infinitely, after some number of file mmaped in memory i've got an error, probably causing memory limit of 2 or 4 Gb. can you help me? my platform is FreeBSD

Re: Allocate a page at interrupt time

2001-08-10 Thread Terry Lambert
Mike Smith wrote: The basic problem here is that you have decided what interrupt threads are, and aren't interested in the fact that what FreeBSD calls interrupt threads are not the same thing, despite being told this countless times, and despite it being embodied in the code that's right

Re: SMBFS and NETSMB?

2001-08-10 Thread Eugene L. Vorokov
You can try the following in your kernel config: options NETSMB options NETSMBCRYPTO options LIBMCHAIN options ICONV I think it's options LIBICONV (or do both work ?). Regards, Eugene To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe

Re: SMBFS and NETSMB?

2001-08-10 Thread Sheldon Hearn
On Fri, 10 Aug 2001 14:58:32 +0400, Eugene L. Vorokov wrote: options NETSMB options NETSMBCRYPTO options LIBMCHAIN options ICONV I think it's options LIBICONV (or do both work ?). No, you're right. I'ts LIBICONV. Sorry. I use the modules, since I don't

Doing file operations on syscalls handler

2001-08-10 Thread Sansonetti Laurent
Hello hackers, I'm new on FreeBSD modules programming, and I've a little question... How can I do file operations (like open(), read()..) on a syscall handler of a syscall module ? In fact I've met the problem since my module must open a file which contains some informations for the hacked

Re: Ghostscript 6.51 + HP printer = WOW!

2001-08-10 Thread Daniel O'Connor
On 10-Aug-2001 Poul-Henning Kamp wrote: The Epson 880 etc drivers made by the Gimp folks are pretty damn nice too. Yeah, but until now you have not been able to use the PhotoRet stuff in the the HP's at all unless you ran winblows. I lach a modern HP for comparisson I guess :) Photo

Re: Doing file operations on syscalls handler

2001-08-10 Thread Eugene L. Vorokov
Hello hackers, I'm new on FreeBSD modules programming, and I've a little question... How can I do file operations (like open(), read()..) on a syscall handler of a syscall module ? In fact I've met the problem since my module must open a file which contains some informations for the

How to read tunables for Network driver at run time in freebsd 4.3

2001-08-10 Thread sumanth vidyadhara
Hi All, we are writing a nic driver for ethernet card in freebsd 4.3. I have a doubt on how do we get the configuration parameters like setting the transmit descriptors,receive decriptors,also some driver specific tunables at load time of the driver module. Is there any call where the

Setting ti to half duplex

2001-08-10 Thread Derek True
Hello, I've posted this to freebsd-net but have a feeling I might have posted to the wrong list. Hopefully someone here will know the resolution to the following problem: I'm currently trying to set my 3com 3C985-SX gigabit NIC to Half-Duplex.I've recompiled FreeBSD to include the ti

the =+ operator

2001-08-10 Thread Rob
My first post on hackers, so please don't flame me too bad :) I think that only an old hacker can give me the answer :) I've searched far and wide on search engines to find out what the =+ operator does, to no avail. I'm porting some old code and found it. I made a test program and compiled

Re: the =+ operator

2001-08-10 Thread Les Biffle
My first post on hackers, so please don't flame me too bad :) I think that only an old hacker can give me the answer :) I've searched far and wide on search engines to find out what the =+ operator does, to no avail. I'm porting some old code and found it. I ran into this a couple of

Re: the =+ operator

2001-08-10 Thread Mike Smith
I've been doing this for a long time and today this would be taken as two operators. The assignment and unary +. Since A = B is the same as A = +B, it would perform the same as a simple assignment. The only reason I can see to do this legitimately is for clarity reasons, i.e., if what follows the

Re: the =+ operator

2001-08-10 Thread Peter
On Fri, Aug 10, 2001 at 07:46:16AM -0700, Les Biffle wrote: ... There has never been an operator =+, even checking back to the BCPL days. Nope, check anachronisms in KR, at least the 1978 edition p 212: Earlier versions of C used the form =op instead of op= for assignment operations. This

Re: Ghostscript 6.51 + HP printer = WOW!

2001-08-10 Thread Stephen Montgomery-Smith
I guess that you compiled it without the ports. There are some PR's awaiting to be processed at include hpijs in the port versions of ghostscript. I hope someone commits them soon. Poul-Henning Kamp wrote: The new ghostscript 6.51 has integrated the HPIJS backends for HP printers. HPIJS

Re: the =+ operator

2001-08-10 Thread Harti Brandt
On Fri, 10 Aug 2001, Rob wrote: RMy first post on hackers, so please don't flame me too bad :) I think Rthat only an old hacker can give me the answer :) R RI've searched far and wide on search engines to find out what the =+ Roperator does, to no avail. I'm porting some old code and found it.