public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* System call problem
@ 2005-02-26 14:17 Josef E. Galea
  2005-02-26 14:43 ` Steven Rostedt
  2005-02-27 23:02 ` linux-os
  0 siblings, 2 replies; 6+ messages in thread
From: Josef E. Galea @ 2005-02-26 14:17 UTC (permalink / raw)
  To: linux-kernel

Hi,

I am implemeting a new system call for a project I'm working on. I added 
the system call to the file arch/i386/kernel/process.c and added the 
relevant entries in the files arch/i386/entry.S and 
include/asm-i386/unistd.h. My system call is made up of only two lines, 
a printk statement, and a return statement which gets the value of a 
field that I added to the task_struct structure.

I compiled and booted the kernel and am trying to build a user space 
application that uses my system call, however gcc is returning this error:
/tmp/cc4zgzUr.o(.text+0x4e): In functiono `get_rmt_paging':
: undefined reference to `errno'

Can anyone help me with this?

Thanks
Josef

^ permalink raw reply	[flat|nested] 6+ messages in thread
* System Call Problem
@ 2003-01-12  0:38 Hall, Luca
  2003-01-12  1:04 ` Robert Love
  0 siblings, 1 reply; 6+ messages in thread
From: Hall, Luca @ 2003-01-12  0:38 UTC (permalink / raw)
  To: 'linux-kernel@vger.kernel.org'

Hello I have a small problem with a new sys call: 

Slackware 8 , Kernel 2.2.19
tring to add a system call i did:

/usr/src/linux/kernel/luca.c

#include <linux/luca.h>
#include <linux/kernel.h>

asmlinkage int sys_luca(void){
        printk("my call in the kernel\n");
        return(555);

}

/usr/src/linux/include/linux/luca.h

#ifndef __LINUX_LUCA_H
#define __LINUX_LUCA_H

#include <linux/linkage.h>
#include <linux/unistd.h>

_syscall0(int,luca)

#endif

/usr/src/linux/include/asm-i386/unistd.h

added: #define __NR_luca               191

/usr/src/linux/arch/i386/kernel/entry.S

added: .long SYMBOL_NAME(sys_luca)
changed from 190: .rept NR_syscalls-191

compiled with make dep, make bzImage

The problem is now that when I boot i see the printk messages at the 
bottom. around 5 - 7 times.
When I log in I see the printk messages, and dmesg also. I checked many 
resources and cant seem too find what I'm doing wrong; why is my funct being
called at boot time and 
login ?

thanks alot
luca


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2005-02-27 23:04 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-02-26 14:17 System call problem Josef E. Galea
2005-02-26 14:43 ` Steven Rostedt
2005-02-26 18:45   ` Josef E. Galea
2005-02-27 23:02 ` linux-os
  -- strict thread matches above, loose matches on Subject: below --
2003-01-12  0:38 System Call Problem Hall, Luca
2003-01-12  1:04 ` Robert Love

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox