Win32 VC++ DebugBreak in Linxu


 
Thread Tools Search this Thread
Top Forums Programming Win32 VC++ DebugBreak in Linxu
# 1  
Old 05-23-2007
Win32 VC++ DebugBreak in Linxu

Hi,

Is there is any debugging solution in Linux similar to Win32's VC++ DebugBreak() call.
# 2  
Old 05-23-2007
Put this in your linux code and see if it helps.

Code:
 asm ("int $3") ;

# 3  
Old 05-23-2007
what it does?

I am searching for the solution that will help me debug deamons, such that when a function, say UDebugBreak() is called, gdb spawns in a terminal decided by me or else, and it automatically attaches to the calling daemon's thread at the point of call.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

X-Win32 not working

I am trying to export windows display to my unix SunOS I have Windows server 2000 which has X-Win32 v6 installed. I start X-Win32. I then go to configure session with the following details. 1. host name: myhost 2. command: xterm -ls 3 username: user1 4 password: password Then i right... (1 Reply)
Discussion started by: mohtashims
1 Replies

2. Windows & DOS: Issues & Discussions

Getting Error when using Module Win32::IEAutomation;

Hi All, How are you Guys? I am using the Code use Win32::IEAutomation; # Creating new instance of Internet Explorer my $ie = Win32::IEAutomation->new( visible => 1, maximize => 1); # Site navigation $ie->gotoURL('http://www.google.com');... (4 Replies)
Discussion started by: adisky123
4 Replies

3. Shell Programming and Scripting

Details about WIN32::OLE

Hi all, Is win32::OLE module is applicable in linux system??? from my understanding it is not possible..because we have to use some tools for that..for more info refer this website http://oclug.on.ca/archives/oclug/2001-July/008100.html (1 Reply)
Discussion started by: kavi.mogu
1 Replies

4. UNIX for Advanced & Expert Users

problem in installing mod_perl2 in my win32 pc

Dear all; kindly need your help in knowing what is the problem in scenario below:- 1- I have Strawberry Perl (version 5.12.0) installed on my win32 PC. 2- I have Apache server (version 2.2.16) installed on my PC as well. I tried to install mod_perl2 using CPAN... (2 Replies)
Discussion started by: ahmad.diab
2 Replies

5. Shell Programming and Scripting

MS Outlook + Win32::OLE

Hey guys, I'm trying to go through my emails in Outlook until I find an email with a certain subject line. I am able to send emails with no problem, but reading emails and their properties (From, Subject, etc.) is my main problem. Basically, I don't know where to start and using search engines... (2 Replies)
Discussion started by: kooshi
2 Replies

6. Shell Programming and Scripting

win32::IEAutomation

Hi folks, what is the command used to click on the 'x' button of popup browser window in perl windows.I am using WIN32::IEAutomation module. Please any one can help on this.... (3 Replies)
Discussion started by: jyo123.jyothi
3 Replies

7. Shell Programming and Scripting

Can anyone recommend a book for perl WIN32

Is there a book available that goes into the PERL WIN32 module in depth ? I like the Unix in a nutshell or Perl Black Book by Holzner way of teaching. Teach by example. Anyone ? Thanks Popeye, Olive and sweetpea :p (1 Reply)
Discussion started by: popeye
1 Replies

8. Windows & DOS: Issues & Discussions

Perl in Win32

Dear, Did anybody knnow how to run the Perl script or whatever mean for testing the script in Windows? (1 Reply)
Discussion started by: Paris Heng
1 Replies

9. Shell Programming and Scripting

perl win32::ieautomation

Hi friends, I am using win32::ieautomation to automate portal Please help me with below line of code: my $target_cell = $table_object->tableCells(2, 5); what is $table_object in above line I am using $browser->getTable('id:', "table_id")->tableCells(2,5); The error I get is can't... (0 Replies)
Discussion started by: gurukottur
0 Replies

10. UNIX for Advanced & Expert Users

X windows on win32

Hi, I'm looking for a X-windows client for win32. Preferably one that doesn't need to be installed so it can be run without administrator priviliges. I need it so users can logon to a unix or linux server from a windows client using X-windows. The idea is that the user must be able to use... (4 Replies)
Discussion started by: rein
4 Replies
Login or Register to Ask a Question