Measure thread execution (in C, unix)


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Measure thread execution (in C, unix)
# 29  
Old 03-24-2011
Iknew parying was a waste of time..........
# 30  
Old 03-24-2011
One dir is a symbolic link to the other, except in later Solaris, where one dir supports boot and the other supports more complex apps, so you have to do both / and /usr in PATH, LD_LIBRARY_PATH.

Without LD_LIBRARY_PATH, dynamically linked programs cannot find their libs.
# 31  
Old 03-24-2011
Thnaks DG, can you advise as how I rectify?
# 32  
Old 03-24-2011
For thread timers, beyond gethrtime(), you tend to get platform dependent. Someone should POSIX up a double float time and interval time function set. This mentions an assembler call:
http://fixunix.com/bsd/87936-high-re...al-timers.html

-------------- For cron script problem ---------- two threads together makes you double post ----------------

Somewhere early, you need to include explicitly or in a 'sourced' file ( . file_full_path ) these lines:
Code:
PATH= . . . .
export PATH
LD_LIBRARY_PATH= . . . .
export LD_LIBRARY_PATH

and any other variables you need, like the Oracle ones, using the values from your terminal set. The sh form above is also ksh/bash compatible.
# 33  
Old 03-25-2011
FYI I have now being posting into original thread under Solaris!
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Python Thread Execution Issue . . .

Greetings! I set up a basic threading specimen which does the job:#!/usr/bin/python import threading class a(threading.Thread): def __init__(self): threading.Thread.__init__(self) def run(self): print("thread a finished") class b(threading.Thread): ... (0 Replies)
Discussion started by: LinQ
0 Replies

2. Solaris

How to measure IOPS?

Hi I have a system running solaris 10, and I intend to use a NetApp as its storage system. The application requires a throughput between the server and the storage 7000 disk IOPS (random IO sustained throughput with response time of 20 mili second and 16k block size). How to make sure that I... (6 Replies)
Discussion started by: fretagi
6 Replies

3. AIX

How to measure waiting time in run queue?

Hello guys, I am doing a performance analysis on one of our psystem. Most of time I am using Nmon analyser to do my trend graph. But I can't find any help with it. We are interesting in the time spend by tasks in Aix run queue. After looking the Aix documentation, I am pessimist to find any... (3 Replies)
Discussion started by: GiiGii
3 Replies

4. UNIX for Advanced & Expert Users

Implementing thread in UNIX

Hi For our load testing , we are using stubs (unix shell script) which send the response to the request coming from the application. As the unix stub is single threaded , it is responding to only one request whereas multiple requests come in parallely. I haven't worked on thread concepts... (5 Replies)
Discussion started by: jenanee
5 Replies

5. Solaris

What exactly does 'zpool iostat' measure?

hi there, i'd like to know what exactly zpool's iostat (-v) output measure, especially the writes. Is it only the writes to the ZIL or all writes (including commmits) to the disks? if anyone knows, that'd be helpful roti (1 Reply)
Discussion started by: rotunda
1 Replies

6. UNIX for Advanced & Expert Users

How to measure g++ performance?

I am working on an application with some rather interesting build performance issues. If we build on Solaris/Linux x86/AMD64 the build is rather fast, but it takes more than five times as long on our Solaris Sparc servers (single-threaded builds on the workstations, but multi-threaded on the... (5 Replies)
Discussion started by: Elric of Grans
5 Replies

7. Shell Programming and Scripting

Is there a command to measure compile speed?

Hello Ive written 2 programs in shell and I need to compare their speed (Compile) against one another. what methods could I go about doing this? Is there a feature in shell do accommodate this? (2 Replies)
Discussion started by: Darklight
2 Replies

8. Forum Support Area for Unregistered Users & Account Problems

How to post a new thread (Regarding Unix related doubts) in Unix Forums

How to post a new thread (Regarding Unix related doubts) in Unix Forums. I registered my id but I am unable to post my Questions to Forum. Thanks & Regards, indusri (1 Reply)
Discussion started by: indusri
1 Replies

9. UNIX for Dummies Questions & Answers

CPU load unit of measure?

If unix says my cpu load is 2.15 exactly what does that mean? --Jason (1 Reply)
Discussion started by: Mac J
1 Replies
Login or Register to Ask a Question