Sponsored Content
Full Discussion: INode
Top Forums Shell Programming and Scripting INode Post 100420 by nitinsharma_ssn on Monday 27th of February 2006 11:58:52 AM
Old 02-27-2006
INode

hi i am nitin...

jus a new kid on the block... my query is...

does the concept of region invovle sharin of inodes wen the sticky it is set... eg... if two process share two text regions... wat actually happens

thank u
 

10 More Discussions You Might Find Interesting

1. Solaris

inode = which block

hiho, i would like to show my apprentices the auto-defrag/perform mechanism from UFS. new FS, creating new directories, each directory get its own cylinder on the disk. hmm.... they want proofs..... *embarrassing* i couldn't remember how to look on which block the inode is linked.... so,... (4 Replies)
Discussion started by: pressy
4 Replies

2. Red Hat

inode no and fd path

hi, can anyone please tell me where i can extract inode numbers and path associated with all file descriptors. i want these informations only. is there any system call or functions to get these things? i hav a RHEL 4. also /proc/pid/fd shows some file descriptor list. is that the proper path to... (1 Reply)
Discussion started by: sanjaykhuntia
1 Replies

3. UNIX for Dummies Questions & Answers

incore inode

Dear Friend , what is incore inode ? and what is difference between incore inode and inode ????? sanjay (1 Reply)
Discussion started by: sanjaygoyan
1 Replies

4. Solaris

about inode

how can i see inode table information of a perticler inode.anybody knows pls tell me. Than.Q (3 Replies)
Discussion started by: nag.mi2000
3 Replies

5. AIX

FS inode 58%

Hi Guys, I have this filesystem got big with inode: /dev/hd4 3670016 183664 95% 63705 58% /var I don't know why the system doesn't give alerts on this FS although it's 95% and why the inode is 58%. Any comments will be highly appreciated. Thanks, itik (1 Reply)
Discussion started by: itik
1 Replies

6. UNIX for Dummies Questions & Answers

inode filename

can someone please tell me why is the filename not inlcuded in the inode of the file? (2 Replies)
Discussion started by: wowman
2 Replies

7. Homework & Coursework Questions

free inode

usually there are no free inode whose number is less than remembered inode but exception are there..tell me those exception (4 Replies)
Discussion started by: pk_mal
4 Replies

8. Solaris

Inode Usage

Inode usage on one of my servers is up to 85% Whats the best way of finding which directories are storing loads of files? (1 Reply)
Discussion started by: JayC89
1 Replies

9. Solaris

inode in solaris

Dear, How can i check inode information in my Solaris box? With Regards, Mjoshi (4 Replies)
Discussion started by: mjoshi87
4 Replies

10. UNIX for Dummies Questions & Answers

Inode usage

Environment: O.S Version HP-UX B.11.31 U ia64 What is the recommended Inode free nodes? On our server Unix Sys Admin, have setup warning email alert when % of I-node usage is above or equal at 5%. Sample Email: --------------------------------------------------- Subject: WARNING:... (6 Replies)
Discussion started by: Siva SQL
6 Replies
ldr_inq_region(3)					     Library Functions Manual						 ldr_inq_region(3)

NAME
ldr_inq_region - Returns module information about a region in a loaded module LIBRARY
Standard C Library (libc.a) SYNOPSIS
#include <sys/types.h> #include <loader.h> int ldr_inq_region( ldr_process_t process, ldr_module_t mod_id, ldr_region_t region, ldr_region_info_t *info, size_t info_size, size_t *ret_size); PARAMETERS
Specifies the process whose address space contains the module for which the region information is required. Identifies the module. The module ID is returned when the module is first loaded. Identifies the region. Points to a ldr_region_info_t buffer in which the informa- tion about the loaded region is returned. Specifies the size of the allocated ldr_region_info_t structure, in bytes. Specifies the number of types actually returned into the buffer pointed to by the info parameter. DESCRIPTION
The ldr_inq_region() function returns information about a specified region within a specified module. The module is contained within the address space of the specified process. The returned information includes the number and name of the region, its protection attributes, its size, and address information about the region in the process' address space. To obtain the unique identifier for the current process, use the call: ldr_process_t ldr_my_process(); To obtain the unique identifier for the kernel, use the call: ldr_process_t ldr_kernel_process(); The ldr_region_t values are unique identifiers for each loaded region for a particular module. The value of the region parameter ranges from 0 (zero) to (maximum number of regions) -1. NOTES
The loader assumes that each object module contains one or more regions. A region is a separately relocated, virtually contiguous range within a module. A region can contain text or data. This function is currently implemented only for the current process and the kernel. RETURN VALUES
Upon successful completion, the function returns a value of 0 (zero). If the operation fails, the function returns a negative error value and errno is set to indicate the error. ERRORS
If the ldr_inq_region() function fails, errno may be set to one of the following values: The specified module ID or region ID is not valid. The process identifier is not valid. Additional errors may be returned from the underlying IPC mechanism (for kernel/cross-process loading). RELATED INFORMATION
Functions: ldr_inq_module(3), ldr_next_module(3) delim off ldr_inq_region(3)
All times are GMT -4. The time now is 11:52 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy