Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

getlomodel(3) [debian man page]

GETLOMODEL(3)						       MBK LOGICAL FUNCTIONS						     GETLOMODEL(3)

NAME
getlomodel - retrieve a model from a lofig_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 "mut.h" lofig_list *getlomodel(model, name) lofig_list *model; char *name; PARAMETERS
model Pointer to a lofig list name String indicating the model to be looked for DESCRIPTION
getlomodel seeks a lofig element in the list pointed to by model. RETURN VALUE
getlomodel returns a pointer to the lofig that match the name. If no lofig has the given name, then NULL is returned. EXAMPLE
#include "mlo.h" locon_list *get_model_cons(model, name) lofig_list *model; char *name; { lofig_list *p = getlomodel(model, name); return p ? p->LOCON : NULL; } SEE ALSO
mbk(1), lofig(3), addlomodel(3), freelomodel(3), dellomodel(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 GETLOMODEL(3)

Check Out this Related Man Page

ADDLOMODEL(3)						       MBK LOGICAL FUNCTIONS						     ADDLOMODEL(3)

NAME
addlomodel - create a tempotary logical model and add it to a 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" lofig_list *addlomodel(model, name) lofig_list *model; char *name; PARAMETERS
model Pointer to the head of a model list name Name of the model to be created DESCRIPTION
addlomodel creates a new lofig_list element and adds it to the front of the list pointed to by model, and becomes itself the list head. The addlomodel function is mosty used to create a temporary list of lofig in order to represent the "in file" instances' models. In fact, all the file format used with mbk have the notion of models local to files, so they are not figure, but are temporarly used to create instance connectors, for example. For details on the structure, see lofig(3). RETURN VALUE
addlomodel returns a pointer to the new head of model list. ERROR
"*** mbk error *** addlomodel impossible : model name already exists" The model, not the figure, is already present in the model list pointed to by model, and since a model should be unique, this can't be. EXAMPLE
#include "mut.h" #include "mlo.h" void add_model(name) char *name; { MODEL = addlomodel(MODEL, name); } SEE ALSO
mbk(1), lofig(3), getlomodel(3), freelomodel(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 ADDLOMODEL(3)
Man Page

9 More Discussions You Might Find Interesting

1. IP Networking

The OSI-model

after reading a paper about the OSI-model I'm not exactly sure how to look at this model. Does data (a file) travel from the application level "down" each layer at the client Application V Presentation V Session V Transport V Network V Data link V | | | (Physical) | (3 Replies)
Discussion started by: J.P
3 Replies

2. AIX

DRC Question

Is possible to replicate a IBM R6000 model 6015 and model 6020 in a IBM new model P5?? What problems I will encounter with AIX?? (0 Replies)
Discussion started by: IBravo
0 Replies

3. Shell Programming and Scripting

checking users input to file

ok im sorta stuck on this, The user enters a car model and it has to check it in a text file in the current directory. If the car model is not in the file, user has to enter another model This is what i have so far read -p "Enter a car model: " car1 grep -w $car1=$(cat carMakes.txt)... (3 Replies)
Discussion started by: gangsta
3 Replies

4. AIX

can aix 5.x run on a old powerpc model 250

have an old powerpc model 250, currently on aix 4.3.2...64 meg in size of memory.. Can any of the AIX 5L, 5.1, 5.2, or 5.3 run on it at all ?? (3 Replies)
Discussion started by: ppchu99
3 Replies

5. UNIX for Dummies Questions & Answers

error message risc 43p model 150

hello, i am new to this forum and i really could use some help, we have a risc 43p model 150 ibm server and we run prophet 21 on it. after the box boots up and then we activate prophet 21 we get a error message saying "The data space of the process is not enough for the shm segment (1176) │ ... (1 Reply)
Discussion started by: mrhose
1 Replies

6. IP Networking

OSI model, communication between same layers but on different machines

Hi friends, I hope everyone is doing fine. I have this confusion regarding the OSI model. I have been reading a book on datacommunication and networking which discusses the OSI model in great detail. One thing that I can't figure out is the OSI daigram in this book. It shows communication between... (1 Reply)
Discussion started by: gabam
1 Replies

7. Shell Programming and Scripting

a little help with using AWK to display whats being read in

I am making a script that reads in the model of a car and then searches a file and displays the make model and price of anything matching the input provided. here is what I have so far #!/bin/sh echo Please enter a car model: read model if test $? -eq 0 then grep $model /home/cars awk... (4 Replies)
Discussion started by: subway69
4 Replies

8. UNIX for Advanced & Expert Users

Finding the hardware model name remotely

First, forgive me if this is a stupid questions that I should have asked in the non-expert forum. It seems like a hard questions to me. Is there a way to find the hardware model name from the command line on UNIX machines in general? I want to find out what kind of machines are running at a... (5 Replies)
Discussion started by: Pug
5 Replies

9. AIX

Disk model number

Hi Please let me know how to check disk model number. I have already tried prtconf command but there is no such information related to model number. Regards, Scriptor (3 Replies)
Discussion started by: scriptor
3 Replies