Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

lqr_carver_attach(3) [debian man page]

LQR_CARVER_ATTACH(3)					     LqR library API reference					      LQR_CARVER_ATTACH(3)

NAME
lqr_carver_attach - attach an LqrCarver to another LqrCarver SYNOPSIS
#include <lqr.h> LqrRetVal lqr_carver_attach(LqrCarver* carver, LqrCarver* aux); DESCRIPTION
The function lqr_carver_attach is used to attach an LqrCarver object (pointed to by aux) to another one (pointed to by carver). This will have the effect that each operation performed over the carver object will be reflected on aux (they will share the same visibility map). This function must not be used after a visibility map was loaded into the base object (the one pointed to by carver). The object pointed to by aux must have the same original size as the base object. Note that the original size information is reset whenever a flattening operation occurs, or the rescaling direction changes, so that this function should be called befor rescaling occurs. There is no limitation on the number of LqrCarver objects which is possible to attach. Nesting is also possible. It is irrelevant if the aux carver is initialised or not; from the moment of attachment, it will passively undergo all transformations performed over carver. RETURN VALUE
The return value follows the Liquid Rescale library signalling system. LQR_ERROR is returned if the sizes of carver and aux don't match. SEE ALSO
LqrRetVal(3), lqr_carver_list_start(3), lqr_carver_list_current(3), lqr_carver_list_next(3), lqr_carver_list_foreach(3) COPYRIGHT
Copyright (C) 2007-2009 Carlo Baldassi LqR library 0.4.1 API (3:1:3) 10 Maj 2009 LQR_CARVER_ATTACH(3)

Check Out this Related Man Page

LQR_CARVER_CANCEL(3)					     LqR library API reference					      LQR_CARVER_CANCEL(3)

NAME
lqr_carver_cancel - cancel ongoing operations on a LqrCarver object SYNOPSIS
#include <lqr.h> LqrRetVal lqr_carver_cancel(LqrCarver* carver); DESCRIPTION
The function lqr_carver_cancel can be used to cancel an ongoing operation which is currently being performed on the the LqrCarver object pointed to by carver. It must be used asynchronouly, from within an independent thread. If an operation is in fact cancelled by this function, the function which was performing the operation will return the value LQR_USRCANCEL, and so will do any other operation successively called on the same LqrCarver object whose return type is LqrRetVal; otherwise it will have no effect. Whenever a function returns LQR_USRCANCEL, it means that the LqrCarver object is in an inconsistent state, and, since there is currently no way to recover from this situation, any further operation on that object must be avoided, and it must be destroyed. This function will fail if invoked over attached LqrCarver objects. RETURN VALUE
The return value follows the Liquid Rescale library signalling system. However, it can be called multiple times, so it will never return LQR_USRCANCEL itself. SEE ALSO
LqrRetVal(3), lqr_carver_resize(3), lqr_carver_flatten(3) COPYRIGHT
Copyright (C) 2007-2009 Carlo Baldassi LqR library 0.4.1 API (3:1:3) 10 Maj 2009 LQR_CARVER_CANCEL(3)
Man Page

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

a question about memeory

I worked for the ISP of china mobile .And I found memeory of free is getting lower in our system. I know some commmand just like memstat -s ,ps aux .but I can't get the detail of it .How can i get the information about which programe is using our memory more and more. (1 Reply)
Discussion started by: xiaoxu
1 Replies

2. UNIX for Dummies Questions & Answers

checking Processes

I have aix version 5.1 I was wondering how I can check all running processes? I have used several ps commands but have been unsuccessful at it. I can see all with {ps aux } I have a little trouble knowing what I am looking for also. I should be looking at length of time and processor usage? I am... (3 Replies)
Discussion started by: rocker40
3 Replies

3. UNIX for Dummies Questions & Answers

PS -aux and PS

I am new to the Unix. Can someone tell me what is the difference between 'PS' command and 'PS -aux"? Isn't 'PS' mean the current running process? Isn't 'PS -aux' mean the current running process too? If they are the same, how come 'PS -aux' always has a lot more listing than 'PS'? Thanks, (4 Replies)
Discussion started by: a2715mt
4 Replies

4. UNIX for Dummies Questions & Answers

Process seen in "ps aux" but not "top"

Hi, I have a process that can be seen after "ps aux" command. However when I do "top" command. This process cannot be seen. How can this happen? Is there anything wrong with my code? (3 Replies)
Discussion started by: monkfan
3 Replies

5. Shell Programming and Scripting

bash ps; remove the header, sort and reinsert

Hi, I'm ssh'ing into a server using ruby and sending a one-liner to retrieve the output of the 'ps aux' command. So far, this is what I have: ps aux | sort -r -n -k3 | sed -e '1s/^/this is first\n/' | head -n10 With this I can insert a line at position 1, but I would rather extract the... (3 Replies)
Discussion started by: gekeha
3 Replies

6. Homework & Coursework Questions

Shell: Parsing Input

1. The problem statement, all variables and given/known data: I'm fairly confident I can brute force this assignment, but let's not do that ;-). Basically I'm required to support input such as ps aux | grep blah >> blah.txt& echo 'slslslsl' My question is what is the best way to parse that... (4 Replies)
Discussion started by: someoney3000
4 Replies

7. AIX

Difference between ps -ef and ps aux

Hi, Can someone tell me what the difference is between ps -ef and ps aux. I was under the assumption that both commands would list ALL processes currently running on the system. But on my server I find the following: # ps -ef | wc -l 519 # ps aux | wc -l 571 What... (1 Reply)
Discussion started by: petervg
1 Replies

8. Shell Programming and Scripting

How to find the exact process using ps aux command?

Please do not post a technical question in the @How to contact....' forum. I have moved this for you. Hello Everyone, Please help me on this, Requirement here is to check whether the process is running using the process id. For the below scenario, I m trying to grep 1750 process id to... (3 Replies)
Discussion started by: Hari A
3 Replies