How to obtain system open file table value in Linux


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to obtain system open file table value in Linux
# 1  
Old 05-25-2007
How to obtain system open file table value in Linux

Hello ,

I want to get current system open file table [kernal] value. Can any one help.

Thanking you,
mahesh
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Finding processes on another system that have a file open

I am familiar with using "lsof <filename>" or "fuser <filename>" to determine what process has a given file (usually a .nfs) open. However, I recently used this command and it returned a blank list. I suspect the process that has the .nfs file open might be on another system. Is there a way... (2 Replies)
Discussion started by: Special_K
2 Replies

2. Shell Programming and Scripting

UNIX file system to Linux file system migration

We would be migrating UNIX file system to Linux file system. We do have many directory and sub directories with files. after migrating unix to linux file system , i want to make sure all the files has been copied ? What would be the best approach to validate directory ,sub-directory and file... (1 Reply)
Discussion started by: balajikalai
1 Replies

3. Programming

how to programatically obtain informations about existing NICs on the system

hi, i would like to know how to programatically obtain informations about existing NICs (both configured and non-configured if possible) on *NIX? i need to write simple *NIX C/C++ program that will have these informations. i have tried to search forums (and also google) with no luck. any help... (2 Replies)
Discussion started by: nikoladsp
2 Replies

4. SuSE

How to obtain the Linux Distribution Details ?

Hi, I am working on a Unix console. I want to obtain the Linux distribution details in 1) Shell 2) C program ( System call ) Want to know if it is REDHAT / SUSE / UBUNTU , etc .. Please let me know if there is any way to achieve this. Thanks in advance, Siva. (8 Replies)
Discussion started by: Sivaswami
8 Replies

5. UNIX and Linux Applications

Linux based Open Source ERP System - CK-ERP

Hi, folks, I have developed CK-ERP, which is an open source accounting / MRP / ERP / CRM system that runs on top of multiple middlewares. It provides accounting and back office functionalities to SMEs and utilizes the underlying middleware to administer accounts/groups. Details about and... (0 Replies)
Discussion started by: chiukay
0 Replies

6. UNIX for Dummies Questions & Answers

How to open WinZip file in linux

Hi i am an fresh engineer working in a Embedding company and i am new to linux so any one help me to teach or tell how to open a WinZip file in linux as i use gunzip but hte file suffix is not gz so can any one healp me... urs ... (2 Replies)
Discussion started by: wagmare
2 Replies

7. Linux

How to open a .DAT video file in LINUX

:confused: Hai guys!!!! I am using Mandrake Linux 10.1 with Intel P4 system.. I don't know how to open .DAT video file in LINUX. Please help me! (1 Reply)
Discussion started by: mahi3699
1 Replies
Login or Register to Ask a Question
XtGetKeysymTable()														XtGetKeysymTable()

Name
  XtGetKeysymTable - return a pointer to the keycode-to-keysym mapping table of a  display.

Synopsis
  KeySym *XtGetKeysymTable(display, min_keycode_return,
  keysyms_per_keycode_return)
	   Display *display;
	   KeyCode *min_keycode_return;
	   int *keysyms_per_keycode_return;

Inputs
  display   Specifies the display whose table is required.

Outputs
  min_keycode_return
	    Returns the minimum keycode valid for the display.

  keysyms_per_keycode_return
	    Returns the number of keysyms stored for each keycode.

Returns
  The keycode-to-keysym table for display.

Availability
  Release 4 and later.

Description
  XtGetKeysymTable()  returns  a pointer to the Intrinsics' copy of the X server's keycode-to-keysym table, which must not be modified by the
  application.	This table is simply an array of KeySym.  The number of keysyms associated with each keycode is returned in  keysyms_per_key-
  code_return.	 The  first  keysyms  in  the table are for the keycode returned in min_keycode_return.  The keysyms for a keycode k begin at
  index:

     k - min_keycode_return) * keysyms_per_keycode_return

  Any entries in the table that have no keysyms associated with them contain the value NoSymbol.

Usage
  The Intrinsics maintains a table internally to map keycodes to keysyms for each open display.  The Translation Manager uses this table, and
  custom keycode-to-keysym translator procedures (see XtSetKeyTranslator()) and other clients may also need to use it.	Most applications and
  widgets will never need to use this function.

  You should not cache this keysym table but should call XtGetKeysymTable() each time the value is needed, because the table  may  change  at
  any time.

See Also
  XtConvertCase(1), XtKeysymToKeycodeList(1), XtRegisterCaseConverter(1), XtSetKeyTranslator(1), XtTranslateKeycode(1).

Xt - Keyboard Handling														XtGetKeysymTable()