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 strongm 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: *

  1. goodtalka

    problem with SIGALRM

    alarm() is used to generate the SIGALRM signal after specified seconds, if the connect call succeeds then the alarm is reset, else it generates the alarm and returns.
  2. goodtalka

    problem with SIGALRM

    I have some problem with the SIGALRM. I have a multithreaded program in which each thread contains a object which implements a timed tcpconnect function as shown below: //////////////////////////////////////////// static void connect_alarm(int signo) { cout<<&quot;\nConnect_alarm .... .. Time...
  3. goodtalka

    problem with Thread function

    hi, I have written a client/server program using pthread. After I get a client connection request, I create a thread for that client(detached thread with system scope). The start routine that is specified in the pthread_create function creates a object of a class and calls a function in that...
  4. goodtalka

    Problem in compiling...... pthread routines

    hi, I am not able to compile a program(threads related code) which calls pthread_create,pthread_join ... and other pthread routines. It says &quot;undefined reference to pthread_create...(all these funcetions)&quot;. I have included pthread.h header. What is wrong here?
  5. goodtalka

    Hard disk Upgradation

    Hi, I have a 20GB harddisk, now want to install one more 40GB HDD as a slave to this. 1. How can I find out the maximum capacity that my motherboard can support. 2. I have installed lots of sofwares in the D: drive of my present 20GB HDD, If I install the new HDD as a slave the...
  6. goodtalka

    why string object not accepted in latest compiler?

    Why is string class not accepted in latest gcc-c++ compiler. Actually I was using Redhat linux 7.1 and had coded using standard string objects. I recently installed Redhat Linux 8.0, when I compiled the same code it gave list of errors which was all related to using string objects. It says...
  7. goodtalka

    slow mouse action

    I have created two panels in my container, each panel add an object of two different classes. One class extends JFrame and implements ActionListener and other class extends JSplitPane and extends ListSelectionListener. My problem now is that when I add both the panels in the container the output...
  8. goodtalka

    Problem in sending mail using perl

    hi, I have some problem in sending mail using perl. I used the following perl script to send the mail using my smtp server. ########################### use Mail::Sender; ref ($sender = new Mail::Sender { from => 'somebody@somewhere.com', smtp => 'mail.yourISP.com', boundary =>...
  9. goodtalka

    problem with cookies

    hi, I have a problem with cookies in perl. I have created the cookie in the following way : ----------------- my $cgi = new CGI; my $cookie= $cgi->cookie(-name=>&quot;usrid&quot;, -value=>&quot;usname&quot;, -path=>&quot;/cgi-bin/&quot;)...
  10. goodtalka

    persistant database connection

    Where can I get the mod_perl-2 binaries ? I checked out some of the binaries but that didn't work (from the site http://theoryx5.uwinnipeg.ca/ppmpackages/mod_perl-2.ppd), this binary is not meant for MSWin32-x86-multi-thread. Please help!
  11. goodtalka

    persistant database connection

    I am creating a web application (using CGI perl) where in I have lot of links on a page which, each link will run the same cgi script to retrive different data from the database.It takes lot of time each time to connect to the database and retrive, so I want a way where in I can connect to the...
  12. goodtalka

    php- cgi configuration

    I have problem in setting up PHP as cgi executable.I am using apache sever. I have followed the steps for installing PHP as cgi executable (i.e., installing without the -- with-apxs option).The PHP programs work fine through apache server when referenced in the htdocs directory,but fails when...

Part and Inventory Search

Back
Top