Hi, everybody,
I want to make sure whether we can program the multi-thread code based on
KSE in FreeBSD5.0 RC-1.
I have make in '/usr/src/lib/libpthread', I found some new things in
'/usr/lib' as follow:
lrwxr-xr-x 1 root wheel 11 Dec 11 16:04 libkse.so -> libkse.so.1
-r--r--r-- 1 ro
On Sun, Dec 08, 2002 at 11:45:22PM -0600, Dan Nelson wrote:
>In the last episode (Dec 08), [EMAIL PROTECTED] said:
>> Hi all
>>
>> How can i make a tail -f and show the results in a web page with
>> out having to reload the page every N seconds
>>
>> i am using PHP in a script like:
>>
>> > $er
RVD-Studio, âèðòóàëüíàÿ ñòóäèÿ äèçàéíà è ïðîãðàììèðîâàíèÿ ïðåäëàãàåò ñëåäóþùèå óñëóãè:
- Ðàçðàáîòêà è ñîïðîâîæäåíèå ïðîãðàììíîãî îáåñïå÷åíèÿ ïî Âàøèì ýñêèçàì è/èëè îïèñàíèþ
- Èçãîòîâëåíèå ñàéòîâ äëÿ ôèçè÷åñêèõ ëèö è îðãàíèçàöèé
- 3D-ìîäåëèðîâàíèå äëÿ Web è íå òîëüêî
- Ïðîåêòèðîâàíèå 3D è Flas
RVD-Studio, ×ÉÒÔÕÁÌØÎÁÑ ÓÔÕÄÉÑ ÄÉÚÁÊÎÁ É ÐÒÏÇÒÁÍÍÉÒÏ×ÁÎÉÑ
ÐÒÅÄÌÁÇÁÅÔ ÓÌÅÄÕÀÝÉÅ ÕÓÌÕÇÉ:
- òÁÚÒÁÂÏÔËÁ É ÓÏÐÒÏ×ÏÖÄÅÎÉÅ ÐÒÏÇÒÁÍÍÎÏÇÏ ÏÂÅÓÐÅÞÅÎÉÑ ÐÏ ÷ÁÛÉÍ
ÜÓËÉÚÁÍ É/ÉÌÉ ÏÐÉÓÁÎÉÀ
- éÚÇÏÔÏ×ÌÅÎÉÅ ÓÁÊÔÏ× ÄÌÑ ÆÉÚÉÞÅÓËÉÈ ÌÉÃ É ÏÒÇÁÎÉÚÁÃÉÊ
- 3D-ÍÏÄÅÌÉÒÏ×ÁÎÉÅ ÄÌÑ Web É ÎÅ ÔÏÌØËÏ
- ðÒÏÅËÔÉÒÏ×ÁÎÉÅ 3D É Flas
Çäðàâñòâóéòå!
Ðàáîòà â ñåòè äëÿ Âàñ
http://www.getjob.boom.ru
Èçâèíèòå çà áåñïîêîéñòâî.
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message
On Fri, 6 Dec 2002, Kyunghwan Kim wrote:
> I've heard that kernel of RELENG_4 branch is single-threaded,
> but can hardly check out if kernel process(thread) like pagedaemon can
> run on other cpu concurrently when another cpu is processing an network
> interrupt. Using Kernel process(thread) for c
On 10-Dec-2002 Chuck Tuffli wrote:
> I've been chasing down some weird panics in my CAM driver and have
> noticed that functions don't seem to save all register values before
> they modify them.
>
> For example, function A uses register ecx to hold the value of a pointer. Part way
>through,
> fu
On Tue, 10 Dec 2002, Dmitry Morozovsky wrote:
> On Tue, 10 Dec 2002, Lamont Granquist wrote:
> LG> >From the man page, I'm not really sure where it makes a difference other
> LG> than when someone is playing with IFS, but $@ seems to be more of what I
> LG> intended...
>
> Please note quotes expl
In C for the IA32, EAX, ECX, and EDX are scratch registers. All other
registers must be saved and restored by the procedure.
Also keep in mind that the return value of a procedure is placed in
eax. If the return value is a 64 bit value, it is placed in eax and
edx.
Hi,
I've more or less written a bus for GPIO kind of hardware and
a device-driver for National Geode's SCx200 GPIO pins.
I'd like to connect the gpiobus(4) till the iicbb(4) 'device'
so I can talk to the lm-sensors and other stuff that hangs
on the iicbus(4) (i.e. two GPIOs).
Is there any smal
Looking at /sbin/init source, I stumbled
across a reference to /sbin/session_logger
This looks like a historical leftover,
as it's defined but never actually used.
Still, I'm curious, anyone happen to
recall what this was for?
Tim Kientzle
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "u
In the last episode (Dec 10), George Georgalis said:
> On Sun, Dec 08, 2002 at 11:45:22PM -0600, Dan Nelson wrote:
> > #! /bin/sh
> > printf "Content-type: text/plain\r\n\r\n"
> > tail -f /var/log/messages
> >
>
> Unfortunatly if you try that your webserver will quickly fail because
> the connecti
On Tue, 10 Dec 2002, Lamont Granquist wrote:
LG> >From the man page, I'm not really sure where it makes a difference other
LG> than when someone is playing with IFS, but $@ seems to be more of what I
LG> intended...
Please note quotes explicitly, "$@" is really needed where your parameters
contai
We would sure like to be able to boot freebsd, but freebsd makes bios
calls.
Any way we can change this (i.e. pass info freebsd needs via tables).
Openbsd boots, so does win2k, so we're not linux-centric.
ron
-- Forwarded message --
Date: Mon, 9 Dec 2002 21:19:15 -0500 (EST)
F
On Tue, Dec 10, 2002 at 04:58:34PM +0100, [EMAIL PROTECTED] wrote:
> In message <[EMAIL PROTECTED]>, Chuck Tuffli write
> s:
> >I've been chasing down some weird panics in my CAM driver and have
> >noticed that functions don't seem to save all register values before
> >they modify them.
> >
> >For
In message <[EMAIL PROTECTED]>, Chuck Tuffli write
s:
>I've been chasing down some weird panics in my CAM driver and have
>noticed that functions don't seem to save all register values before
>they modify them.
>
>For example, function A uses register ecx to hold the value of a pointer. Part way
>
I've been chasing down some weird panics in my CAM driver and have
noticed that functions don't seem to save all register values before
they modify them.
For example, function A uses register ecx to hold the value of a pointer. Part way
through, function A calls function B which uses ecx as a loo
Hi
Somedays ago i wrote to this list about my patch to bootp_subr.c
Some users said to me about error in the link... sorry, here is the
working link:
http://oslo.procergs.com.br/tor/leal/FreeBSD/bootp_subr.c
sorry by the english.
[EMAIL PROTECTED]
SDF Public Access UNIX System - http://sdf.lo
>From the man page, I'm not really sure where it makes a difference other
than when someone is playing with IFS, but $@ seems to be more of what I
intended...
And in case anyone is still reading this now, I'd like to throw out the
suggestion that CVS_LOCAL_BRANCH_NUM should really be an option to
On Mon, 9 Dec 2002, Lamont Granquist wrote:
LG> I finally figured this out. To use CVS_LOCAL_BRANCH_NUM with a cvs
LG> pserver you need to have the environment variable set server-side. That
LG> means something like invoking a wrapper from inetd which sets the
LG> environment variable and the ca
20 matches
Mail list logo