Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Ezequiel
  • Content: Threads
  • Order by date
  1. Ezequiel

    Debugging with program parameters using gdb

    Hi! I'm trying to debug a program that I execute WITH parameters. When trying to do a gdb programname -par1 -par2 The gdb thinks that -par1 -par2 are parameters for debugging, instead of using them with my program. How can I solve this? Thanks! Eze. --- Ezequiel Glinsky eze@bumeran.com...
  2. Ezequiel

    Timing the execution of a program

    I need a simple script to measure the time it took to execute a program. What can I do? I thought about a shell script that could log the start (current) time, execute the simulation and log the end (current) time. I'm new to Linux, so if any of you can help me, THANKS. Regards. Eze. ---...
  3. Ezequiel

    More granularity with my timer (under Linux)

    I'm using the clock() function in my C++ program. The problem is: I'm getting times like 0, 10 ms, 20 ms, etc. But... what if a part of the program takes 5 ms, 15 ms, or 25 ms, or even more odd values like 7 ms, 11 ms, 12 ms, etc. Is there a way to modify the intervals to let me measure the...
  4. Ezequiel

    Jar file creation - execution

    Hi all! My class files are located in e:\Eze\test\class\test directory I have an application that runs perfectly when I do: E:\Eze\test>set classpath=.;e:\Eze\test\class E:\Eze\test>java test.mainTEST But, when I try to execute it from the jar file I've just created... I receive this error...
  5. Ezequiel

    How to run (and create!) a batch file in Linux

    Hi everybody! I need to run (and, previously, create) a batch file in my Linux. That is, I need to run a couple of programs one by one (in fact is the same program with different parameters). How can I do it? Thanks! Ezequiel. --- Ezequiel Glinsky eze@bumeran.com Buenos Aires, Argentina
  6. Ezequiel

    Class browser

    I have a project written in C++ Have you heard of any tool that lets you "browse" the classes, and/or even draw a hierarchy of the classes that have been written? If it's freeware... much better :-) I work under Windows mainly. Thanks! --- Ezequiel Glinsky eze@bumeran.com Buenos...
  7. Ezequiel

    Dhrystone code in C++

    I need to use dhrystone code in a C++ program for Linux/UNIX. In fact, what I need is to call a function that loops 'N' times (the parameter is N, of course). Any of you have any idea/source code/suggestions to share with me? Thanks! --- Ezequiel Glinsky eze@bumeran.com Buenos Aires, Argentina
  8. Ezequiel

    Error compiling a signed applet - File missing?

    I used to compile my applet with NO problem... but it seems like I messed it up deleting a file on my Hard disk... or something. I guess I screwed it when I deleted a zip or something because now I receive an error. Now I get: E:\Eze\Facu\Tesis\Java\Graflog\v03>javac graflog.java...
  9. Ezequiel

    Converting string to int

    I'm trying to do the following: int intDelay; string timeIntDelay; (...) if( timeIntDelay != "" ) intDelay = atoi ( timeIntDelay ); While trying to compile I get the following error: rtatomic.cpp: In method `RTAtomic::RTAtomic(const class string & = "RTAtomic")'...
  10. Ezequiel

    Get time with more precision

    Hi! I need to get the time with more precision than seconds from the machine that is running my c++ program. I would need at least miliseconds. I'm using GNU C++ under Linux. Any ideas? Thanks! Eze. --- Ezequiel Glinsky eze@bumeran.com Buenos Aires, Argentina
  11. Ezequiel

    GXL and VRML information

    I'm looking for information about GXL and VRML. Any reliable source on the net you can suggest? Regards. Ezequiel. eze@bumeran.com --- Ezequiel Glinsky eze@bumeran.com Buenos Aires, Argentina
  12. Ezequiel

    Iomega ZIP Drive (external, parallel) not working

    I can't use my Zip drive! :-( When I do a "modprobe ppa" I get... Parport0: detected irq 7; use procfs to enable interrupt driven operation. Ppa: version 2.03 warning no ppa devices found i(texto autodetect, no aplica) scsi: 0 hosts lib/modules/2.2.14-5.0/scsi/ppa.o; init-module...
  13. Ezequiel

    X not working - Video problems

    I'm not able to start my X! What can I do? When I run the Xconfiguratior, it automatically detects the following: PCI probing found a: PCI Entry: Intel Corporation|82810E CGC [Chipset Graphic Controller] X Server: SVGA After that, I select: ViewSonic E771 from the list (that's the monitor I...
  14. Ezequiel

    X - Video Problem

    I can not use my Gnome Desktop... I receive an error each time I run the Xconfigurator. I have a ViewSonic E771 Monitor (17") and an Intel i810. I've tried 640x480, 800x600, etc. And different color depths... and I still get the error! What should I do? Thanks in advance. Eze. --- Ezequiel...
  15. Ezequiel

    Timing queries

    Is there a way to retrieve the time spent on a query, when I execute it in the SQLPlus? Thanks in advance. --- Ezequiel Glinsky eze@bumeran.com Buenos Aires, Argentina
  16. Ezequiel

    Error when trying to compile

    I've re-installed the gcc (the 2.95.3) in my RedHat7 because I heard (and noticed) that the gcc 2.98 was having some troubles. Now, I can't compile a project... because it's not able to find the list.h, stdio.h, etc! What can I do? Here's a brief "log" so that you can understand better...
  17. Ezequiel

    Stored Procedure over a distribute environment

    I have the following problem: I need to develop a Stored Procedure that updates/selects info to a different databes (i.e. "select ... from employee@db1" or else "select ... from employee@db2"). Is there a way to make the @db1 / db2 dynamically so that I don't have to make a...
  18. Ezequiel

    Intermedia - escaping words

    I need to find a record that contains, for example the "NT" and the "UNIX" words. So, I do a kind of: .... where contains (COLUMNAME, 'UNIX and NT', 10)>0... The problem: the OCI Routine thinks that I'm speaking about NT = narrower term (usage: NT(dog, cat)) so I receive an...

Part and Inventory Search

Back
Top