[rtl] ANNOUNCMENT 3ed Real Time Linux Workshop

2001-10-22 Thread Der Herr Hofrat
Third Real-Time Linux Workshop 26-29.11.2001 Crowne Plaza in Milan San Donato Milano, Italy As followup to the meetings of developers and users of real-time linux in Vienna and Orlando, the Third Real

Re: [rtl] Intel Hardware Performance Counters

2001-10-22 Thread Karim Yaghmour
Check this out: http://oprofile.sourceforge.net/ This provides for hardware counter manipulation. Karim Chunky Kibbles wrote: On Sat, Oct 20, 2001 at 12:20:17AM -0400, Christopher D. Carothers wrote: Gary -- use the rdtsc instruction which stands for read timestamp counter. This

[rtl] Error with sem_getvalue function

2001-10-22 Thread David Hamilton
This is a bug report for fsmlabs regarding RTLinux3.1 (at least) The semaphore function .. int sem_getvalue(sem_t* sem, int* sval) is supposed to write the semaphore value to the int pointed to by sval, and return an error code. Instead, it doesn't write anything to sval, and returns the

[rtl] Problem using multiple serial ports

2001-10-22 Thread Michael C. Riedl
Hi there! Using dev/ttyS0 in my program works perfect, but I would like to use /dev/ttyS1, /dev/ttyS2 and /dev/ttyS3 as well. To avoid any trouble, I assigned a different interrupt to each of the four serial pots: ttyS0 4 ttyS1 3 ttyS2 5 ttyS3 7 and I used the usual i/o-addresses. All is

[rtl] kernel-module version mismatch

2001-10-22 Thread Michael Nielsen
Hi ! I am new to rt-linux and also new to writing modules. I first have installed mandrake 8.0 (kernel 2.4.3-20mdk) and thereafter i installed kernel 2.4.4 and after that i installed rtlinux v3.1 (kernel 2.4.4-rtl). I can run many of the examples from rt-linux without any problems what so ever.

Re: [rtl] kernel-module version mismatch

2001-10-22 Thread Der Herr Hofrat
Hi ! I am new to rt-linux and also new to writing modules. I first have installed mandrake 8.0 (kernel 2.4.3-20mdk) and thereafter i installed kernel 2.4.4 and after that i installed rtlinux v3.1 (kernel 2.4.4-rtl). I can run many of the examples from rt-linux without any problems what so

[rtl] modified rt_com

2001-10-22 Thread Will Shackleford
Attached is a modified form of the rt_com stuff that includes a number of changes that we needed but perhaps someone else will find them useful also. It was based on the rt_com that came with rtlinux-3.0 that I downloaded in February so it is possible the latest already includes some/all of

Re: [rtl] communication between modules

2001-10-22 Thread Norm Dresner
No reason to apologize, your English is almost perfect. Anyway, there may be other means, but here are some: 1. Global variables. You can export symbols in the module that's loaded first and have each of the modules put into these variables what it wishes to share and take out what it needs

[rtl] disk write performance question

2001-10-22 Thread Loren Frank
Hi all. This is a bit peripheral to rtlinux, but hopefully someone here can help me out. I have written a data acquistion application using an rtlinux module, and, while everything works well when I am not saving data to disk, during disk writes I get pauses in the display. This is, as far as I

Re: [rtl] Error with sem_getvalue function

2001-10-22 Thread Victor Yodaiken
Thanks. On Mon, Oct 22, 2001 at 02:13:13PM +0100, David Hamilton wrote: This is a bug report for fsmlabs regarding RTLinux3.1 (at least) The semaphore function .. int sem_getvalue(sem_t* sem, int* sval) is supposed to write the semaphore value to the int pointed to by sval, and return