Sponsored Content
Top Forums Programming strange effect: if ... else in C influence a previous statement Post 302260292 by redoubtable on Thursday 20th of November 2008 05:27:53 AM
Old 11-20-2008
It would be helpful if you could provide an compilable example of your problem.
 

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

recursive effect!!

I run the following command in some of my folders... and ended up with a huge mess!! find . -type f -exec perl -e 's/blabla/zzzxxxx/gi' -p -i.bak {} \; I had to kill the process and later when I checked with one of my folders.. ls vaditerm.dt.bak vaditerm.dt.bak.bak... (2 Replies)
Discussion started by: sskb
2 Replies

2. UNIX for Advanced & Expert Users

Effect of Preemptive Kernel

hi there, i am porting kernel 2.2 driver program to kernel 2.6. for some extent i am successfull but some times the system gets hanged. what might be the problem? i am not able to get any help from log messages as nothing is being printed at that moment. hey does this kernel preemptiveness and... (2 Replies)
Discussion started by: sriram.ec
2 Replies

3. UNIX for Dummies Questions & Answers

How do properties effect script?

Hi, I have noticed that rm -if will perform completely different to rm -fi. Whats the pattern of how I put my options to the script in relation to how it will act. i.e rm -fi treat the remove as interative but rm -if treats it as forced Thansk, Chris. (1 Reply)
Discussion started by: Chiefos
1 Replies

4. Virtualization and Cloud Computing

The Network Effect - Part 1

2008-10-31T22:46:14+01:00 http://geekandpoke.typepad.com/.a/6a00d8341d3df553ef010535ce543e970c-800wi Nicholas Carr (and here) has some problems with Tim O'Reilly's theory about the cloud and the network effect. http://feeds.feedburner.com/~f/GeekAndPoke?i=OFn0M... (0 Replies)
Discussion started by: Linux Bot
0 Replies

5. UNIX for Dummies Questions & Answers

What crontab is in effect after reboot

A basic cron question and I hope I explain it enough. If a person creates a file to use with cron and issues the followin command: crontab I understand this will set the cron entries to whatever is in . However, if we now edit the crontab with: crontab -e and save, how does cron... (3 Replies)
Discussion started by: niswonp
3 Replies

6. Shell Programming and Scripting

Remove previous line if next & previous lines have same 4th character.

I want to remove commands having no output. In below text file. bash-3.2$ cat abc_do_it.txt grpg10so>show trunk group all status grpg11so>show trunk group all status grpg12so>show trunk group all status GCPKNYAIGT73IMO 1440 1345 0 0 94 0 0 INSERVICE 93% 0%... (4 Replies)
Discussion started by: Raza Ali
4 Replies

7. Shell Programming and Scripting

[Solved] Strange Problem in case statement while shift

Hi, Here is my code as below: test.ksh: ======= #!/bin/ksh option="${1}" while do case $1 in -f) FILE="${2}" echo "File name is $FILE" ;; -d) DIR="${2}" echo "Dir name is $DIR" ;; -*) echo "`basename ${0}`:usage: | " (5 Replies)
Discussion started by: zaq1xsw2
5 Replies
XtAppSetFallbackResources()											       XtAppSetFallbackResources()

Name
  XtAppSetFallbackResources - specify a default set of resource values.

Synopsis
  void XtAppSetFallbackResources(app_context, specification_list)
	   XtAppContext app_context;
	   String *specification_list;

Inputs
  app_context
	    Specifies the application context in which the fallback resources will be used.

  specification_list
	    Specifies a NULL-terminated array of resource specifications to pre-load the database, or NULL.

Availability
  Release 4 and later.

Description
  XtAppSetFallbackResources() registers specification_list as a default set of resource values that will be used in app_context to initialize
  the resource database if the application-specific class resource file (i.e., the app-defaults file) cannot be found.

  specification_list is an array of strings, each string a single resource specification in resource file format.   If	XtDisplayInitialize()
  is not able to find or read an application-specific class resource file then the resource database for the display will be initialized with
  the values most recently registered with XtAppSetFallbackResources().

  XtAppSetFallbackResources() is not required to copy specification_list; the caller must ensure that the contents of the  list  and  of  the
  strings addressed by the list remain valid until all displays are initialized, or until XtAppSetFallbackResources() is called again.	Pass-
  ing NULL for specification_list removes any previous fallback resource specification for the application context.

Usage
  XtAppInitialize() provides an argument for specifying the fallback resources, so few applications need to call  XtAppSetFallbackResources()
  directly.   Note  that  XtAppSetFallbackResources()  should  be  called before XtOpenDisplay() or XtDisplayInitialize() if they are to take
  effect for that display.

  The intended use of fallback resources is to provide a minimal number of resources that make the application usable (or at least  terminate
  with helpful diagnostic messages) when some problem exists in finding and loading the application-defaults file.

See Also
  XtAppInitialize(1), XtDisplayInitialize(1), XtOpenDisplay(1).

Xt - Resource Management											       XtAppSetFallbackResources()
All times are GMT -4. The time now is 02:31 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy