Code Optimizer

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Code Optimizer
# 1  
Old 11-17-2011
Code Optimizer

Please let me know which tool (GNU or 3rd party tool) is the best we can make use for profiling and optimizing our code. Is gprof an effective tool? Do we have dtrace tool ported in Linux? Our's is a web app developed on Red Hat Linux OS using C++

Thanks in advance.

Last edited by uunniixx; 11-17-2011 at 03:31 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Programming

Oracle 11g optimizer best join order question

Hi team Optimizer max permutations and search limit are set to 3.5 million and 10 respectively.The parameter instruct optimizer to evaluate up to 3.5 million permutations for max 10 table joins I have query with 9 tables joined. How many combinations will optimizer perform to find best... (1 Reply)
Discussion started by: Perlbaby
1 Replies

2. Linux

Go to a line of code , skip few lines of code

Hi , I have a code where i am using a infinite while loop . some thing like below while do if then #go to line 20 fi command 1; command 2; #line 20: sleep 34; (5 Replies)
Discussion started by: Paarth
5 Replies

3. Shell Programming and Scripting

Block of code replacement in Java source code through Unix script

Hi, I want to remove the following code from Source files (or replace the code with empty.) from all the source files in given directory. finally { if (null != hibernateSession && hibernateSession.isOpen()) { //hibernateSession.close(); } } It would be great if the script has... (2 Replies)
Discussion started by: hareeshram
2 Replies

4. UNIX for Dummies Questions & Answers

If ‘922’ Code does not exist on ‘03’ Record, ‘901’ Code will be there instead, move ‘03’ R

01,011600033,011600033,110516,0834,2,90,,2/ 02,011600033,011103093,1,110317,0834,,2/ 03,105581,,015,+00000416418,,,901,+00000000148,,,922,+000000 00354,,/ 03,113806,,015,+00000559618,,,901,+00000000096,,,922,+000000 00621,,/ 88,902,+0000000025218,,/... (1 Reply)
Discussion started by: sgoud
1 Replies

5. Shell Programming and Scripting

translate ksh code to csh code

hi all, Can any 1 help me translate this korn shell code to C shell code : email=$(grep "^$1" $folder/config_2.txt | awk '{print $2'}) In config_2.txt the content is : which mean in korn shell , $1=groupname and $2=email address. Now i need to write in C shell script,when i set the... (2 Replies)
Discussion started by: proghack
2 Replies

6. Programming

how i prepare a c++ code(c code) for implementing my own protocol format

helo my protocol format is given below { destno,mode,no.of packet,pktsize,,pktno,textsize,CRC} description:- { is starting flag destno - 4bytes mode - 1 byte no.of pkt - 4byes pktsize - 6 bytes ... (1 Reply)
Discussion started by: amitpansuria
1 Replies
Login or Register to Ask a Question
Gtk2::ImageView::Tool(3pm)				User Contributed Perl Documentation				Gtk2::ImageView::Tool(3pm)

NAME
Gtk2::ImageView::Tool - Interface for objects capable of being used as tools by Gtk2::ImageView DESCRIPTION
Gtk2::ImageView::Tool is an interface that defines how Gtk2::ImageView interacts with objects that acts as tools. Gtk2::ImageView delegates many of its most important tasks (such as drawing) to its tool which carries out all the hard work. The Gtk2::ImageView package comes with two tools; Gtk2::ImageView::Tool::Dragger and Gtk2::ImageView::Tool::Selector, but by implementing your own tool it is possible to extend Gtk2::ImageView to do stuff its author didn't imagine. Gtk2::ImageView uses Gtk2::ImageView::Tool::Dragger by default, as that tool is he most generally useful one. However, it is trivial to make it use another tool. my $view = Gtk2::ImageView->new; my $tool = Gtk2::ImageView::Tool::Selector ($view); $view->set_tool ($tool); Using the above code makes the view use the selector tool instead of the default dragger tool. HIERARCHY
Glib::Interface +----Gtk2::ImageView::Tool METHODS
boolean = $tool->button_press ($ev) o $ev (Gtk2::Gdk::Event) boolean = $tool->button_release ($ev) o $ev (Gtk2::Gdk::Event) cursor = $tool->cursor_at_point ($x, $y) o $x (integer) o $y (integer) Returns the cursor to display at the given coordinates. boolean = $tool->motion_notify ($ev) o $ev (Gtk2::Gdk::Event) $tool->paint_image ($opts, $drawable) o $opts (Gtk2::Gdk::Pixbuf::Draw::Opts) o $drawable (Gtk2::Gdk::Drawable) Called whenever the image view decides that any part of the image it shows needs to be redrawn. $tool->pixbuf_changed ($reset_fit, $rect) o $reset_fit (boolean) o $rect (Gtk2::Gdk::Rectangle) Indicate to the tool that either a part of, or the whole pixbuf that the image view shows has changed. This method is called by the view whenever its pixbuf or its tool changes. That is, when any of the following methods are used: Gtk2::ImageView::set_pixbuf() Gtk2::ImageView::set_tool() Gtk2::ImageView::damage_pixels() If the reset_fit parameter is TRUE, it means that a new pixbuf has been loaded into the view. tool : the tool reset_fit : whether the view is resetting its fit mode or not rect : rectangle containing the changed area or NULL SEE ALSO
Gtk2::ImageView, Glib::Interface COPYRIGHT
Copyright (C) 2007 by Jeffrey Ratcliffe. This software is licensed under the GPL-3; see Gtk2::ImageView for a full notice. perl v5.14.2 2011-11-16 Gtk2::ImageView::Tool(3pm)