Tagged Questions
The trap tag has no wiki summary.
12
votes
5answers
591 views
What techniques can be used to detect so called “black holes” (a spider trap) when creating a web crawler?
When creating a web crawler, you have to design somekind of system that gathers links and add them to a queue. Some, if not most, of these links will be dynamic, which appear to be different, but do ...
8
votes
3answers
338 views
Implementation of system calls / traps within Linux kernel source
I'm currently learning about operating systems the use of traps to facilitate system calls within the Linux kernel. I've located the table of the traps in traps.c and the implementation of many of the ...
6
votes
1answer
122 views
Are ARM instructuons SWI and SVC exactly same thing?
ARM assembly has SWI and SVC instructions for entering into 'supervisor mode'.
What confuses me is, why there are two of them? Here it is said that SVC was formerly SWI. Does it mean that basically ...
6
votes
6answers
864 views
What's the most insidious way to pose this problem?
My best shot so far:
A delivery vehicle needs to make a series of deliveries (d1,d2,...dn), and can do so in any order--in other words, all the possible permutations of the set D = {d1,d2,...dn} ...
4
votes
3answers
104 views
avoid trap representation with memcpy
Please consider the following code:
float float_value = x; // x is any valid float value
int int_value = 0;
size_t size = sizeof(int) < sizeof(float) ? sizeof(int) : sizeof(float);
...
4
votes
1answer
2k views
bash trap of TERM - what am I doing wrong?
Given this hack.c program:
#include <stdio.h>
main()
{
int i=0;
for(i=0; i<100; i++) {
printf("%d\n", i);
sleep(5);
}
}
and this hack.sh bash script:
#!/bin/bash
./hack
If I ...
3
votes
2answers
348 views
Powershell trap [Exception] is not catching my error
For some reason my script is not catching the exception when I run the following script against a file that does not exist. I based this code from examples I found on the web but it doesn't seem to ...
3
votes
2answers
237 views
jQuery: Trap all click events before they happen?
On my page I have a lot of various elements which respond to click events.
There are times when I need to block all clicks based on some global flag.
Is there a way I can make this check in a ...
3
votes
3answers
242 views
Set trap in bash for different process with pid known
I need to set a trap for a bash process i am starting in the background. The background process may run very long and has his pid saved in a specific file.
Now i need to set a trap for that process, ...
3
votes
1answer
154 views
Trap keyboard input in a WindowsFormsHost control in WPF
I have an ActiveX control inside a WinForms user control. My WinForms app loves it!
Now, moving over to WPF, I use the user control in a WindowsFormsHost control. Works great..., but I want to treat ...
3
votes
1answer
530 views
Powershell trap not being triggered consistently
I can't understand why I'm seeing this behavior in Powershell:
PS C:\> trap { "Got it!" } 1/0
Attempted to divide by zero.
At line:1 char:22
+ trap { "Got it!" } 1/0 <<<<
PS C:\> ...
3
votes
4answers
250 views
Is it possible to implement a `trap' for GNU make
I'm wondering if there's a way to implement the similar functionality as you get in bash scripts using `trap', but for gmake, such that if the user presses CTRL-C, or if make itself fails, it can call ...
2
votes
1answer
404 views
Trap signal in child background process
I am unable to trap a signal when running in a child / background process.
Here is my simple bash script :
#!/bin/bash
echo "in child"
trap "got_signal" SIGINT
function got_signal {
echo ...
2
votes
3answers
530 views
Externally disabling signals for a Linux program
On Linux, is it possible to somehow disable signaling for programs externally... that is, without modifying their source code?
Context:
I'm calling a C (and also a Java) program from within a bash ...
2
votes
3answers
438 views
multiple bash traps for the same signal
When I use the "trap" command in bash, the previous trap for the given signal is replaced.
Is there a way of making more than one trap fire for the same signal?
2
votes
4answers
1k views
How to propagate a signal through an arborescence of scripts ? Bash
I have an arborescence of scripts which are controlled by a main one
I want to trap the signal ctrl-c in the main script and propagate it to the others
The other scripts should trap this signal as ...
2
votes
1answer
2k views
How to send a signal SIGINT from script to script ? BASH
I want to trap a signal send from Script-A.sh to Script-B.sh
so in Script-A.sh i use the command
(Send SIGINT to Script-B.sh)
kill -2 $PID_Script-B.sh
And in Script-B.sh i catch ...
2
votes
1answer
792 views
C++: Continue execution after SIGINT
Okay, I am writing a program that is doing some pretty heavy analysis and I would like to be able to stop it quickly.
I added signal(SIGINT, terminate); to the beginning of main and defined terminate ...
1
vote
1answer
26 views
Define MIB and send SNMP trap under .net
I have developed a special application for a company under .net in C# and it is used for years. Now it is developed on, one of the main new features I have to implement is to integrate it with another ...
1
vote
1answer
74 views
Idiomatic way to exit ksh while loop
I've the following 5 second timer which prints an asterisk for each second.
timer () {
i=1
trap 'i=5' INT
while [[ $i -le 5 ]];do
sleep 1
printf "*"
((i+=1))
done
}
...
1
vote
1answer
45 views
Implement a system service using TRAP instruction…?
Generally speaking, how do you implement a system service using TRAP #XX instruction?
Please provide some Pseudo-code if possible.
1
vote
1answer
186 views
Perl trapping Ctrl-C (sigint) in bash
I'm reading How do we capture CTRL ^ C - Perl Monks, but I cannot seem to get the right info to help with my problem.
The thing is - I have an infinite loop, and 'multiline' printout to terminal (I'm ...
1
vote
0answers
47 views
How do you trap when the user clicks on a ListPreference from the menu that pops up?
Can you tell me how to trap when the user clicks on a ListPreference from the menu that pops up? In my app the user can select a volume level. I would like to show some feedback using a Toast after ...
1
vote
1answer
389 views
net-snmp sample code to parse MIB file and extract trap related information from it
I am using net-snmp C library on windows. I want to parse trap related information from the MIB files, I need some sample code to do this. I didn't find anything useful on http://www.net-snmp.org/
...
1
vote
1answer
215 views
bash restart sub-process using trap SIGCHLD?
I've seen monitoring programs either in scripts that check process status using 'ps' or 'service status(on Linux)' periodically, or in C/C++ that forks and wait on the process...
I wonder if it is ...
1
vote
1answer
177 views
How do I stop Ctrl-C from killing spawned processes with jruby?
I have a ruby program, spawning new processes. I want these to survive their parent even when I press Ctrl-C. To accomplish this, I try to trap INT, However, this doesn't help.
The program below ...
1
vote
1answer
310 views
Ending Timestamp not printing on Shell Script: Using trap
I have a shell script I use for deployments. Since I want to capture the output of the entire process, I've wrapped it in a subshell and tail that out:
#! /usr/bin/env ksh
# deploy.sh
...
1
vote
1answer
288 views
If you `source` another file, `trap INT` defined before won't work?
If I place this on the top the Bash script, Control+C doesn't work.
exit-function() {
echo "Hey hey!"
}
trap exit-function INT
But if I put it few lines after, then Control+C is trapped.
...
1
vote
0answers
537 views
Problem sending SNMP trap and manager recognizing it
I'm attempting to create a sample application utilizing Microsoft's WinSNMP library to create an example of a trap. See the code sample below:
//Send a trap;
LPSTR strSrcAddr = "10.12.0.21";
...
1
vote
2answers
351 views
custom trap signal in ksh
Is there a way for me to implement custom fake signals in ksh? Currently am capturing the ERR signal and exiting. However, due to a change, there are calls that may not return success, however that is ...
1
vote
2answers
377 views
Some sort of Ruby “Interrupt”
So here's what I'm doing -- I have a ruby script that prints out information every minute. I've also set up a proc for a trap so that when the user hits ctrl-c, the process aborts. The code looks ...
1
vote
2answers
471 views
Where did int 3 go?
In 32 bits mode programming I used to employ int 3 in my programs a lot for stopping at a given location with the debugger (embedding the instruction in the source). Now in 64 bits it seems to not be ...
1
vote
2answers
748 views
Is it possible to detect *which* trap signal in bash?
when using something like trap func_trap INT TERM EXIT with
func_trap () {
...some commands...
}
is there a way in the function block to detect which trap has called it?
Something like
...
1
vote
3answers
386 views
traping shell exit code
I am working on a shell script, and want to handle various exit codes that I might come across. To try things out, I am using this script:
#!/bin/sh
echo "Starting"
trap "echo \"first one\"; echo ...
1
vote
1answer
442 views
kernel software trap handling
I'm reading a book on Windows Internals and there's something I don't understand:
"The kernel handles software interrupts either as part of hardware interrupt handling or synchronously when a thread ...
1
vote
2answers
831 views
Custom SNMP Trap Implementation in .Net
I need to create a monitoring mechanism using SNMP (in .Net). I think we'll be using an nsoftware component to handle most of the work.
It appears we must use 'traps' to communicate from the agent ...
1
vote
4answers
194 views
How not to run into the intellectual property trap on a daily basis?
I found a lot of questions and answers about how to protect yourself from the so called bad boys/ IP thieves and how to enforce rights. As a BSD guy myself I'm not particular interested in this and I ...
1
vote
2answers
669 views
Ruby, windows, active_record, and Control-C
What is active_record doing to the signal processes under windows (I don't see this with the same versions on the mac) that causes it to behave so strangely? For instance:
require 'rubygems'
...
1
vote
1answer
602 views
WinSNMP v1traps
I'm using WinSNMP in c++ to send snmp traps. For backwards compatibility I’m required to send v1 snmp traps. WinSNMP works with v2 traps but is capable of converting those v2 traps to v1 when sending ...
0
votes
0answers
11 views
how to get trap massages about cpu usage using ssCpuRawSystem
im trying to get CPU usage in snmpd.conf while using the ssCPURawSystem MIB
these are the relevant lines from my snmpd.conf
#CpuUsage
#view all included ...
0
votes
0answers
13 views
Nutch How to avoid crawl calendar webpage generated by CGI
I am using Nutch to crawl a large website.
The webpages are generated by CGI program. Most of the webpages' URL contains expressions such as ?id=2323&title=foo.
I want to crawl these webpages ...
0
votes
1answer
37 views
dlopen() in multithreaded application exit with “Trace/BPT trap”
I'm trying to load a framework at runtime in a Mac OS X application written in C using the following command:
dlopen("/System/Library/Frameworks/JavaVM.framework/JavaVM",RTLD_LAZY);
If I call ...
0
votes
1answer
55 views
Powershell Error Trap for Get-ChildItem -Filter and Robocopy (ErrorAction)
I'm drafting a powershell script to manually backup some DC's. The backups need to be moved from one folder to another and I am using Get-ChildItem -Filter "Backup*" to select the backup files, then ...
0
votes
1answer
61 views
.txt file is no longer written to by snmptrapd daemon after opening and closing with ifstream in c++
I am running Net-Snmp (environment is a virtual machine running Linux Mint OS 11) and have configured it to send trap information to a text file that I have called trapd.txt. If I reboot the VM any ...
0
votes
1answer
38 views
saving a string of chars in assembly LC-3
I am trying to make a simple program using the LC-3 Architecture.
All I am trying to do is read a string from the console, somehow save it in memory, and then print it back out.
This is what I have ...
0
votes
1answer
48 views
Is there a generic web app MIB that allows custom variables to be sent via SNMP Trap?
Looking for a Management Information Base (MIB) designed for web applications (Note: i'm working in PHP) that I can send multiple variables to my Network Management System via a SNMP Trap. Do I have ...
0
votes
1answer
181 views
How to debug SIGTRAP using gdb?
My own program uses SIGTRAP signal. I want to use gdb to debug my program.
However, when the SIGTRAP is raised in my program, gdb cannot go into my trap handler.
How to single step into my trap ...
0
votes
0answers
32 views
Call custom function on memory access
In a C++ application, I'd like to have a function of my own called whenever some memory is accessed. For now, I only need this for Windows with MS compiler. The closest thing I could find is ...
0
votes
0answers
73 views
SNMP Traps dropped after sometime
I am testing SNMP traps using snmptrapd service. I use a system (A) to send traps constantly and I have 2 other devices (B and C) to receive traps from this A. I configure A to send traps to both of ...
0
votes
1answer
379 views
How do I trap SIGQUIT properly in a bash script?
I can write shell scripts that trap SIGINT just fine, but I can't seem to trap SIGQUIT.
#!/bin/bash
function die {
echo "Dying on signal $1"
exit 0
}
trap 'die "SIGINT"' SIGINT
trap 'die ...