Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

viewloins(3) [debian man page]

VIEWLOINS(3)						       MBK LOGICAL FUNCTIONS						      VIEWLOINS(3)

NAME
viewloins - display elements of a loins_list ORIGIN
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in Paris, France. Web : http://asim.lip6.fr/recherche/alliance/ E-mail : alliance-users@asim.lip6.fr SYNOPSYS
#include "mlo.h" void viewloins(pt) loins_list *pt; PARAMETER
pt Pointer to the loins to be scaned DESCRIPTION
viewloins scans all the primary elements of the loins_list pointed to by pt, and displays a textual output of the data strcuture contents. The LOCON field is scaned, and its contents displayed. Its use is mostly for debugging purposes, and educational ones, since the output is quite verbose, even if very easy to understand. EXAMPLE
#include <stdio.h> #include "mlo.h" void view_ins(ptfig) lofig_list *ptfig; { loins_list *ins; for (ins = ptfig->LOINS; ins; ins = ins->NEXT) viewloins(ins); } SEE ALSO
mbk(1), loins(3), viewlo(3), viewlofig(3), viewlotrs(3), viewlosig(3), viewloinscon(3), viewloinscon(3). BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 October 1, 1997 VIEWLOINS(3)

Check Out this Related Man Page

VIEWPHINS(3)						      MBK PHYSICAL FUNCTIONS						      VIEWPHINS(3)

NAME
viewphins - display elements of a phins_list ORIGIN
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in Paris, France. Web : http://asim.lip6.fr/recherche/alliance/ E-mail : alliance-users@asim.lip6.fr SYNOPSYS
#include "mph.h" void viewphins(pt) phins_list *pt; PARAMETER
pt Pointer to the phins to be scaned DESCRIPTION
viewphins scans all the primary elements of the phins_list pointed to by pt, and displays a textual output of the data strcuture contents. Its use is mostly for debugging purposes, and educational ones, since the output is quite verbose, even if very easy to understand. EXAMPLE
#include <stdio.h> #include "mph.h" void view_ins(ptfig) phfig_list *ptfig; { phins_list *ins; for (ins = ptfig->PHINS; ins; ins = ins->NEXT) viewphins(ins); } SEE ALSO
mbk(1), phins(3), viewph(3), viewphfig(3), viewphseg(3), viewphref(3), viewphvia(3), viewphcon(3). BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 October 1, 1997 VIEWPHINS(3)
Man Page

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

PHP function kills my code?

So I'm making a page for one of my web sites that scans the visitors ports (just a few specific ones, not ALL) and tells them if they have any open. Now I made up the code and it worked great. Now instead of having the same chunk of code all over my script, I tried to make my own subroutine so I... (10 Replies)
Discussion started by: l008com
10 Replies

2. Solaris

High Page In and Executable page In

Hi, Currently I'm experience very high page ins on my system running on solaris 10. From vmstat, the page ins figure is very high, further drill down shows the page ins are from file system and occassional spike in executable page ins. Details as follow: oracle@perch:/files>> vmstat 5... (9 Replies)
Discussion started by: srage
9 Replies

3. Programming

ptrace-GETREGS

hello everybody!! I want to post a question!I am confused about the explanation of ptrace command. long ins; ins=ptrace(PTRACE_GETREGS,pid,NULL,&regs); with this command i am able to read, for instance, regs.eip context or get regs.eip address? And if i write the commad... (2 Replies)
Discussion started by: nicos
2 Replies

4. Shell Programming and Scripting

Grouping output with sum

Hi Gurus, I would like to do in a script something that is really easy in sql. Basically, I have a file with a fomat like the following: name1_test 501 name 1 33 510 test2 900 name1_test 300 So, I would like to group them as... (3 Replies)
Discussion started by: ocramas
3 Replies

5. Shell Programming and Scripting

Rsync over ssh

Hi UnixGurus Could you please help me with the below scenario. SERVER1=abc.ins.com SERVER2=exy.ins.com PATH=/home/oracle/backup/ USER=oracle I want to sync $PATH from $SERVER1 to $SERVER2. I used the below command and run the command from $SERVER1 /usr/bin/rsync -arv -e ssh $PATH... (1 Reply)
Discussion started by: cheers799
1 Replies