[Subject Prev][Subject Next][Thread Prev][Thread Next][Subject Index][Thread Index]

Re: C doubts



Arun Sharma wrote:

> On Sat, Aug 26, 2000 at 11:06:50AM +0530, Atul Mehta wrote:
> > Hi all,
> >       I have a doubt in C.. Reading the kernel sources u find manu
> > functions prefixed by an "inline" .. What exactly does inline mean?
>
> Instead of a "call" instruction, the instructions comprising the function
> will be placed in the caller's body.
>
>         -Arun
>
> ---------------------------------------------
> The mailing list archives are available at
> http://lists.linux-india.org/cgi-bin/wilma/LIP

hi arun,
            a function is  a seperate procedure or code which will be
actually called by the CALL istruction. [after compilation].

if you put that function as inline when ever there is a reference to that
function the function will not be called but the total procedure in that
function will replace that faunction call statement.

i hope you are clarified.

mail again
pratap