t; a logfile. I want to read all written data
> > (without neither stop nor interfere normal
> > log process) from another process in real
> > time.
> >
> > How can I achieve it ?
>
> When on the command line, I do this using the program 'socat'
&g
normal
log process) from another process in real
time.
How can I achieve it ?
When on the command line, I do this using the program 'socat'
(net/socat in ports). I.e.
socat FILE:/var/log/messages,ignoreeof -
This gives me the same sort of behavior as 'tail -f' exce
r interfere normal
> log process) from another process in real
> time.
>
> How can I achieve it ?
When on the command line, I do this using the program 'socat'
(net/socat in ports). I.e.
socat FILE:/var/log/messages,ignoreeof -
This gives me the same sort of behavio
In the last episode (Dec 11), c0re dumped said:
> Thanks Dan,
>
> But using tail I will have to use a pipe. That's just what I don't want.
>
> That other process what I'm referring to is a C program which I'm
> working on.
>
> I want to use some C function that allow me to do it (if such a
> fun
interfere normal log
> process) from another process in real time.
>
> How can I achieve it ?
Take a look at how the tail command does it. You can either stat the
file periodically then read the new data if you see the timestamp or
size change (portable), or use a kqueue to get notified i
Hello everyone,
I wonder if is possible to read data from a certain file without using a pipe.
Let me explain:
I have a process already writing messages to a logfile. I want to read
all written data (without neither stop nor interfere normal log
process) from another process in real time
On Thu, Jun 22, 2006 at 03:47:44PM +0100, mal content wrote:
> Hello.
>
> Is it possible to grant real-time privileges to ordinary
> users (not root) under FreeBSD? I'm doing some audio
> work and I'd like to give real time privileges to my user id.
While I can
Hello.
Is it possible to grant real-time privileges to ordinary
users (not root) under FreeBSD? I'm doing some audio
work and I'd like to give real time privileges to my user id.
MC
___
freebsd-hackers@freebsd.org mailing list
http://lists.f
Hi
I'm having a combination of linux and freebsd OSes running a reltime
system.
On linux I use the sched_setscheduler together with raised priority to get
realtime characteristics.
I see that the same system calls are implemented in freebsd can I use the
same approach or should the
rtprio(1) w
Hi Anubis and Den!
Anubis, I've "translated" the questions into what I understood.
Den, do not hesitate to complain if I had it wrong.
I would guess the original message was:
- what is the roadmap of FreeBSD (new features)?
- (I let this one to authorized people :-) )
- How
Dude, could you rephrase that?
Its a bit hard to understand
On Sun, 18 Jan 2004 04:09 pm, sam Long wrote:
> I have a system FreeBSD 5.1-p11.
> How will develop further FreeBSD?
> How real time is possible to make from FreeBSD
> operational system?
> I know, that in FreeBSD there
I have a system FreeBSD 5.1-p11.
How will develop further FreeBSD?
How real time is possible to make from FreeBSD
operational system?
I know, that in FreeBSD there are expansions real time
of standard POSIX.
I have a small kernel of system due to modules, but on
how many stably such
kernel?
What
oao Carlos <[EMAIL PROTECTED]> asked:
> > > > > >
> > > > > > Does FreeBSD has any related work about it as an real time operating
> > > > > > system?
> > > > > > Where can i find information about that ??
> &g
Dag-Erling Smorgrav wrote:
>
> Joel Sherrill <[EMAIL PROTECTED]> writes:
> > RTEMS is not pure-GPL -- it does allow binary redistribution.
>
> So does "pure GPL", as long as you make the sources available. If you
> mean that you can redistribute (potentially modified) RTEMS binaries
> without
Joel Sherrill <[EMAIL PROTECTED]> writes:
> RTEMS is not pure-GPL -- it does allow binary redistribution.
So does "pure GPL", as long as you make the sources available. If you
mean that you can redistribute (potentially modified) RTEMS binaries
without providing the source code, then you've effe
Wes Peters wrote:
>
> James Housley wrote:
> >
> > Wes Peters wrote:
> > >
> > > Charles:
> > > >
> > > > -Original Message-
> > > > > Joao Carlos <[EMAIL PROTECTED]> asked:
> > > > >
>
James Housley wrote:
>
> Wes Peters wrote:
> >
> > Charles:
> > >
> > > -Original Message-
> > > > Joao Carlos <[EMAIL PROTECTED]> asked:
> > > >
> > > > Does FreeBSD has any related work about it as a
Wes Peters wrote:
>
> Charles:
> >
> > -Original Message-
> > > Joao Carlos <[EMAIL PROTECTED]> asked:
> > >
> > > Does FreeBSD has any related work about it as an real time operating
> > > system?
> > > W
Charles:
>
> -Original Message-
> > Joao Carlos <[EMAIL PROTECTED]> asked:
> >
> > Does FreeBSD has any related work about it as an real time operating
> > system?
> > Where can i find information about that ??
>
> Here's on
Here's one starting point,
http://www.rtmx.com/
They offer extensions to OpenBSD.
Charles
-Original Message-
From: Joao Carlos [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 03, 2001 11:59 AM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: real time
Does FreeBSD ha
Does FreeBSD has any related work about it as an real time operating
system?
Where can i find information about that ??
---
Joao Carlos
[EMAIL PROTECTED]
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message
Hi !
I am working on some modifications in the netinet code. I therefore
want as little intereferences/side affects as possible.
I would like real time conditions ... but I think thats just an illusion :)
However, I want to minimize the effects done by userland processes,
getty,login,cron et
* Kevin Mills <[EMAIL PROTECTED]> [000712 14:14] wrote:
> > It's in recent versions of stable and current.
> >
> > http://www.freebsd.org/cgi/cvsweb.cgi/src/lib/libc/sys/kqueue.2
>
> Ah, thank you!
>
> How does kqueue interact with uthreads? I noticed that aio_waitcomplete()
> blocks the entire
* Kevin Mills <[EMAIL PROTECTED]> [000712 13:25] wrote:
> > Have a look at "man kqueue", it's a really nifty interface that works
> > very well.
>
> I've seen other references to kqueue on this list, but have yet to find it.
> Where can I find the man page in cvs? Is this on -CURRENT or -STABLE?
> >
> > Is there any present plans to implement the posix realtime signal queues in the
> > freeBSD kernel?
...
>
> Have a look at "man kqueue", it's a really nifty interface that works
> very well.
I will and will look at adding the signal semantics. If anyone sees
where the RTMX source code,
* Shane Nay <[EMAIL PROTECTED]> [000711 14:41] wrote:
> Curiousity strikes me:
>
> Is there any present plans to implement the posix realtime signal queues in the
> freeBSD kernel? I fear I'm not too up on this portion of developement, but
> I've been looking around to see if it's implemented an
Curiousity strikes me:
Is there any present plans to implement the posix realtime signal queues in the
freeBSD kernel? I fear I'm not too up on this portion of developement, but
I've been looking around to see if it's implemented and it looks like it's not
the case.
I'm writing some library cod
Even though its for linux, and linux is really a different animal,
has anyone who is interested in realtime stuff looked at
http://www.rtlinux.org
they have a whack of patches against 2.0.36 and 2.2.1.
--
Email: ska...@worldgate.com Voice: +780 413 1910Fax: +780 421 4929
28 matches
Mail list logo