Re: source code for library calls

2005-03-16 Thread Jochen Voss
Hello Linjay,

On Wed, Mar 16, 2005 at 11:30:33AM -, linay long wrote:
> Could you please provide link to the source code for user level
> calls like socket,bind ... which calls kernel functions sys_socket
> and sys_bind etc.
The good thing about free software is, that it comes with the source,
so this should be easy.  'socket' and 'bind' are, I think, part of the
standard C library, so you can get the source with the command

apt-get source libc6

Warning: this is a huge library (the source archive is 13.2 MB),
and its complicated stuff.

> I would like to know what instructions will be
> there in user level socket and bind other than calling sys_socket
> and sys_bind respectively after generating software interrupt.
Sorry, I can't understand this.

I hope this helps,
Jochen
-- 
http://seehuhn.de/


signature.asc
Description: Digital signature


Re: source code for library calls

2005-03-16 Thread Colin Leroy
On 16 Mar 2005 at 11h03, linay long wrote:

Hi, 

> Could you please provide link to the source code for user level calls
> like socket,bind ... which calls kernel functions sys_socket and
> sys_bind etc. I would like to know what instructions will be there in
> user level socket and bind other than calling sys_socket and sys_bind
> respectively after generating software interrupt.

I think it's in the glibc source code.
-- 
Colin


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



source code for library calls

2005-03-16 Thread linay long

Hello all,

Could you please provide link to the source code for user level calls like socket,bind ... which calls kernel functions sys_socket and sys_bind etc. I would like to know what instructions will be there in user level socket and bind other than calling sys_socket and sys_bind respectively after generating software interrupt.

Regards

Linjay