atom third problems


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users atom third problems
# 1  
Old 03-15-2005
atom third problems

Hi All,
I have troubles with atom third tool...
I have instrumented a program, but that one is runned via exec...(ksh shell)
the program works normally but when I stop it, the log (program.3log) is not created by third...

I forgot to tell that the program runned is a server Tuxedo....

Can someone tell me if it's a bug or not ???


Thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

About ps -ef and if-else problems

I'm new in Shell Programming and Scripting, I would like to ask some questions. ps -ef | grep $appNAme | grep -v grep <-- what will it return when it find a process is running? return 1 or 0 if then exit 1 <--- if = 0 , run this ? else continue <--- if = 1 , run this ?... (5 Replies)
Discussion started by: LoAlex
5 Replies

2. Shell Programming and Scripting

while and do problems

Any ideas how to clear this error as it seems I dont understand if,do,while and els commands #!/bin/ksh set -x print "This script creates test messages" print "Please enter test case name" read testcasename echo $testcasename skipfield=Y while print "Do you want to skip this field... (4 Replies)
Discussion started by: andrew.p.mcderm
4 Replies

3. UNIX for Dummies Questions & Answers

ZOTAC IONITX-A-U Atom 330 1.6GHz Dual-Core 441 NVI

Has anyone installed on the ZOTAC IONITX-A-U Atom 330 1.6GHz Dual-Core 441 NVIDIA ION Mini ITX platform? If so, what if any, were the challneges that you had? What went smoothly I want to get this board because it looks like a stellar system and perfect for Linux. I'm quite curious about... (2 Replies)
Discussion started by: sarfraz
2 Replies

4. SuSE

Problems!!

good friends I am new to linux and I have the following TELNET service problem entering data devo telnet to a Windows server 2003 server and passes will not let me since the move to this server by telnet tells me the characters and thus invalidates me income, I have a service application... (1 Reply)
Discussion started by: pepetico
1 Replies

5. News, Links, Events and Announcements

Intel Offers Developer Kit For Future Atom Processor Netbook Apps

Just wanted to let you know that Intel's published the beta SDK for the Intel Atom Developer Program. That means you can now submit your Windows or Moblin apps for netbooks so you're ready to make money when the OEM stores go live next year. There are some big prizes (holiday, car) on offer for the... (0 Replies)
Discussion started by: Becky_Moblin
0 Replies

6. Shell Programming and Scripting

Problems with $?

Hello, I have the following piece of code that tries to retrieve the result of a .sh: . $HOME/prueba/Scripts/Recogida/recogida_sedra.sh resultado=$? echo "el resultado es : $resultado" if ; then echo "Se va a preprocesar los archivos" In the code of recogida.sh I have the... (8 Replies)
Discussion started by: danietepa
8 Replies

7. UNIX for Dummies Questions & Answers

Problems with using less

Hello, I am having problems with using less on Linux version 2.6.18-92.1.17.el5 (brewbuilder@hs20-bc1-7.build.redhat.com) (gcc version 4.1.2 20071124 (Red Hat 4.1.2-42)). I am using csh but have the same problems on bash. If I pipe something to less it works perfectly i.e. cat file | less... (9 Replies)
Discussion started by: z1dane
9 Replies

8. UNIX for Dummies Questions & Answers

problems with If

I'm having problems uses "if" it works fine when i do this. #!/bin/sh a= 10 qw= 2 w= 20 { if && ;then echo 3 fi } However if i try to do #!/bin/sh a= 10 (5 Replies)
Discussion started by: THM
5 Replies

9. UNIX for Dummies Questions & Answers

Few problems

Hi how can i do this? 1) shell script which writes data and time on to a file if filesystem exceeds 70% of space. 2) make entry to cron table to run a script every 15 mins. and can anyone expplain or demonstrate the difference between variables used in inside a function and outside a... (3 Replies)
Discussion started by: vivekshankar
3 Replies

10. UNIX for Advanced & Expert Users

'make' problems (compliation problems?)

I'm trying to compile and install both most recent version of 'make' and the most recent version of 'openssh' on my Sparc20. I've run into the following problems... and I don't know what they mean. Can someone please help me resolve these issues? I'm using the 'make' version that was... (5 Replies)
Discussion started by: xyyz
5 Replies
Login or Register to Ask a Question
Tk_InternAtom(3)					       Tk Library Procedures						  Tk_InternAtom(3)

__________________________________________________________________________________________________________________________________________________

NAME
Tk_InternAtom, Tk_GetAtomName - manage cache of X atoms SYNOPSIS
#include <tk.h> Atom Tk_InternAtom(tkwin, name) const char * Tk_GetAtomName(tkwin, atom) ARGUMENTS
Tk_Window tkwin (in) Token for window. Used to map atom or name relative to a particular display. const char *name (in) String name for which atom is desired. Atom atom (in) Atom for which corresponding string name is desired. _________________________________________________________________ DESCRIPTION
These procedures are similar to the Xlib procedures XInternAtom and XGetAtomName. Tk_InternAtom returns the atom identifier associated with string given by name; the atom identifier is only valid for the display associated with tkwin. Tk_GetAtomName returns the string associated with atom on tkwin's display. The string returned by Tk_GetAtomName is in Tk's storage: the caller need not free this space when finished with the string, and the caller should not modify the contents of the returned string. If there is no atom atom on tkwin's display, then Tk_GetAtomName returns the string "?bad atom?". Tk caches the information returned by Tk_InternAtom and Tk_GetAtomName so that future calls for the same information can be serviced from the cache without contacting the server. Thus Tk_InternAtom and Tk_GetAtomName are generally much faster than their Xlib counterparts, and they should be used in place of the Xlib procedures. KEYWORDS
atom, cache, display Tk Tk_InternAtom(3)