Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

viewphseg(3) [debian man page]

VIEWPHSEG(3)						      MBK PHYSICAL FUNCTIONS						      VIEWPHSEG(3)

NAME
viewphseg - display elements of a phseg_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 viewphseg(pt) phseg_list *pt; PARAMETER
pt Pointer to the phseg to be scaned DESCRIPTION
viewphseg scans all the primary elements of the phseg_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_seg(ptfig) phfig_list *ptfig; { phseg_list *seg; for (seg = ptfig->PHSEG; seg; seg = seg->NEXT) viewphseg(seg); } SEE ALSO
mbk(1), phseg(3), viewph(3), viewphfig(3), viewphins(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 VIEWPHSEG(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. UNIX for Dummies Questions & Answers

I/O error : file 'CMDFILE'

RUNNING RCBTP05 Tue Oct 12 13:37:13 EDT 2004 I/O error : file 'CMDFILE' error code: 3/5 (ANS85), pc=0, call=1, seg=0 13 File not found Please advise as to what the above error message is all about. Thanks in advance. (0 Replies)
Discussion started by: simt
0 Replies

2. Programming

Open Suse 10 seg fault

Okay, so here is some code that when compiled on Fedora Core 6 works great, but when I compile and run it on OpenSuse 10 it gives back a seg fault when trying to join the 2nd thead. #include <pthread.h> #include <stdio.h> int print_message_function( void *ptr ); int x = 1; main() { ... (1 Reply)
Discussion started by: chrisdrobison
1 Replies

3. HP-UX

HP-UX 64 compilation causing some code to seg fault

Hello everyone, Today we are attempting to port some legacy C code to a 64 HP-UX machine at my company and there is kind of a strange error we ran into. there is a small function they have defined called zgetenv that accepts a char* and basically just does some null checking and returns ... (0 Replies)
Discussion started by: khadesh
0 Replies

4. Programming

'seg' assembly instruction in .s file

Is this x86? I encountered this instruction and can't seem to find any info on what it does anywhere. Any ideas? This is how it appears: seg es (4 Replies)
Discussion started by: stevenswj
4 Replies

5. UNIX for Dummies Questions & Answers

UNIX Basics

Hello, 1) I am trying to get involved in UNIX for educational purposes so I have installed the latest Ubuntu edition 12.04. Do you know another package that I could use it instead for educational purposes? 2)What is the difference between "~$" and "/$" (it comes with cd / and cd ~) .The... (1 Reply)
Discussion started by: Iwn
1 Replies