Re: Understanding a parser.

2017-03-27 Thread Dmitry V. Levin
On Tue, Mar 28, 2017 at 03:48:04AM +0530, Rishi Bhatt wrote: > Hi,Thanks So which are the available syscalls for which i can implement the > decoders? Identifying syscall parsers that could be enhanced is a task by itself. -- ldv signature.asc Description: PGP signature --

Re: Understanding a parser.

2017-03-27 Thread Rishi Bhatt
Hi,Thanks So which are the available syscalls for which i can implement the decoders? On Wed, Mar 22, 2017 at 7:12 AM, Eugene Syromyatnikov wrote: > On Sun, Mar 19, 2017 at 01:47:22AM +0530, Rishi Bhatt wrote: > > Hi, > > Well i am currently understanding how to implement a parser,so i am > > st

Re: Understanding a parser.

2017-03-21 Thread Eugene Syromyatnikov
On Sun, Mar 19, 2017 at 01:47:22AM +0530, Rishi Bhatt wrote: > Hi, > Well i am currently understanding how to implement a parser,so i am > starting with the simple ones first i.e umask.c,readahead.c,mount.c. > > What i know about the implementation of parser: > What we do in these are use the tcb

Re: Understanding a parser.

2017-03-21 Thread Rishi Bhatt
please reply! On Sun, Mar 19, 2017 at 1:47 AM, Rishi Bhatt wrote: > Hi, > Well i am currently understanding how to implement a parser,so i am > starting with the simple ones first i.e umask.c,readahead.c,mount.c. > > What i know about the implementation of parser: > What we do in these are use t

Understanding a parser.

2017-03-18 Thread Rishi Bhatt
Hi, Well i am currently understanding how to implement a parser,so i am starting with the simple ones first i.e umask.c,readahead.c,mount.c. What i know about the implementation of parser: What we do in these are use the tcb struct(u_arg[]) to get the values that are passed in as arguments,i am no