Displaying 20 results from an estimated 21 matches for "handle_except".
2011 Apr 21
1
Installing Search::xapian
...LE_OFFSET_BITS=64
-I/usr/include/gdbm -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic
-DVERSION=\"1.2.5.0\" -DXS_VERSION=\"1.2.5.0\" -fPIC
"-I/usr/lib64/perl5/5.10.0/x86_64-linux-thread-multi/CORE"
handle_exception.cc
libtool: compile: g++ -c
-I/localtemp/amit/rohit/FinalProj/xapian-core-1.2.5/include -D_REENTRANT
-D_GNU_SOURCE -DPERL_USE_SAFE_PUTENV -DDEBUGGING -fno-strict-aliasing -pipe
-I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
-I/usr/include/gdbm -O2 -g -pipe -Wall -Wp,-D_FORTIFY_...
2009 Feb 10
2
rescue_from for NoMethodError
Hi everyone,
I was just trying to catch some exceptions in my app,
for "Record Not Found" I used this
in my application.rb file
rescue_from ActiveRecord::RecordNotFound, :with => :record_not_found
rescue_from ActionController::NoMethodError, :with => :show_error
private
def record_not_found
render :text => "404 Not Found", :status =>
2012 Oct 02
2
The entry of Xen's exception handler
Hi, I am trying to understand the exception handler of Xen. In
xen/arch/x86/x86_64/entry.S, the entry of the page fault handler is :
ENTRY(page_fault)
movl $TRAP_page_fault,4(%rsp)
jmp handle_exception
Here I did not get why to put the exception vector ($TRAP_page_fault) to
stack before calling handle_exception?
Thanks,
--
Xinxin
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
2009 May 05
5
HandBrakeCLI crashes when converting
...InformationFile 0x1c4: volume info not supported
> fixme:advapi:ImpersonateLoggedOnUser (0x98)
> fixme:advapi:ImpersonateLoggedOnUser (0x98)
> fixme:advapi:ImpersonateLoggedOnUser (0x98)
> fixme:advapi:ImpersonateLoggedOnUser (0x98)
> 572273 [unknown (0x32)] HandBrakeCLI 41 _cygtls::handle_exceptions: Exception: STATUS_ACCESS_VIOLATION
> 572687 [unknown (0x32)] HandBrakeCLI 41 open_stackdumpfile: Dumping stack trace to HandBrakeCLI.exe.stackdump
> fixme:advapi:ImpersonateLoggedOnUser (0x98)
> fixme:advapi:ImpersonateLoggedOnUser (0x98)
> 659813 [unknown (0x34)] HandBrakeCLI 41...
2006 Oct 16
2
Ferret::QueryParser::QueryParseException
During our last week of Ferret / aaf usage (also our first week of
Ferret / aaf usage), I have received 8 messages stating that our app
encountered a Ferret::QueryParser::QueryParseException. For instance:
A Ferret::QueryParser::QueryParseException occurred in foo#search:
Error occurred in src/q_parser.y:279 - yyerror
couldn''t parse query "com -- 404". Error message
2008 May 19
0
source-filter_dest-filter patch failing with rsync 3.0.0
...r option in this patch with the command
rsync.exe -a -v -e ssh --source-filter="/cygdrive/c/openssl.exe enc -des3
-pass pass:whatever -a" /cygdrive/c/backup user@dir:
to crypt files to be sent at source with openssl.
At some point rsync fails an i get
104435520 [main] rsync 1040 _cygtls::handle_exceptions: Exception:
STATUS_ACCESS_VIOLATION
104436464 [main] rsync 1040 open_stackdumpfile: Dumping stack trace to
rsync.exe.stackdump
107286788 [main] rsync 1040 _cygtls::handle_exceptions: Exception:
STATUS_ACCESS_VIOLATION
107318448 [main] rsync 1040 _cygtls::handle_exceptions: Error while dumping
s...
2023 Mar 27
1
uncaught C++ exception from Perl Search::Xapian XS?
...hrowing an instance of 'Xapian::DatabaseModifiedError'
Using `eval' from Perl5 doesn't seem effective in catching it.
I'm using postlist_begin, postlist_end and ++ to iterate a
PositionIterator, and reading XS/*Iterator.xs, I see the XS
wrappers are missing:
try { } catch { handle_exception(); }
in several places. Not sure if that's it or if something
else (I know C, but am not remotely fluent in C++).
Thanks
2009 Mar 26
0
rsync error on Win Server 2008
Hi I'm using rsync (ver 3.0.5) to sync a local folder with a folder on a
server using SSH and encrypted key files. It works fine on Windows
2000/XP/2003/Vista but not Windows 2008 Server.
I get an error like the following:
"ssh XXXX_cygtls::handle_exceptions Error while dumping state (probably
corrupted stack)
rsync connection unexpectedly closed. error in rsync protocol data stream
(code 12)"
Here is the batch file I am running:
-------------------------
@ECHO OFF
SETLOCAL
SET CWRSYNCHOME=C:\MyFolder\Rsync
SET CYGWIN=nontsec
SET HOME=%HOME...
2007 Oct 26
1
rsync error: STATUS_ACCESS_VIOLATION
...compiled rsync under cygwin CVS so it may be an issue
there as well. Server side did not crash. It did log an error, but I'm
pretty sure it was due to the client-side crash. Rsync was running using an
ssh port forwarding initiated by a separate command.
4 [main] rsync 8728 _cygtls::handle_exceptions: Exception:
STATUS_ACCESS_VIOLATION
Exception: STATUS_ACCESS_VIOLATION at eip=00000000
eax=011BD368 ebx=00000040 ecx=61121124 edx=FFFFFFFF esi=C0000128
edi=0022D008
ebp=001F2E88 esp=001F2DF0 program=E: \bin\rsync.exe, pid 8728, thread main
cs=001B ds=0023 es=0023 fs=003B gs=0000 ss=0023
St...
2023 Mar 28
1
uncaught C++ exception from Perl Search::Xapian XS?
...it.
>
> I'm using postlist_begin, postlist_end and ++ to iterate a
> PositionIterator, and reading XS/*Iterator.xs, I see the XS
> wrappers are missing:
FWIW, postlist_begin gives you a PostingIterator (positionlist_begin
would give you a PositionIterator).
> try { } catch { handle_exception(); }
>
> in several places. Not sure if that's it or if something
> else (I know C, but am not remotely fluent in C++).
That is indeed what's missing.
I'm open to clean patches to address issues in Search::Xapian still,
but it's probably simplest to use the Perl bind...
2007 May 23
0
Apache CGI Performance Big Degration in Dom0 vs. Native
...k of 0x00 (Unhalted core cycles) count 100000
samples % image name app name symbol name
71855 4.6699 xen-syms-pae-3.0.4_13138-0.33 xen-syms-pae-3.0.4_13138-0.33 get_page_from_l1e
71812 4.6672 xen-syms-pae-3.0.4_13138-0.33 xen-syms-pae-3.0.4_13138-0.33 handle_exception
58634 3.8107 xen-syms-pae-3.0.4_13138-0.33 xen-syms-pae-3.0.4_13138-0.33 put_page_from_l1e
56301 3.6591 xen-syms-pae-3.0.4_13138-0.33 xen-syms-pae-3.0.4_13138-0.33 do_update_va_mapping
49543 3.2199 vmlinux-2.6.16.46-0.10-xenpae vmlinux-2.6.16.46-0.10-xenpae _spin_lock
Domain 0, P...
2007 May 23
0
Apache CGI Performance Big Degration in Dom0 vs. Native
...k of 0x00 (Unhalted core cycles) count 100000
samples % image name app name symbol name
71855 4.6699 xen-syms-pae-3.0.4_13138-0.33 xen-syms-pae-3.0.4_13138-0.33 get_page_from_l1e
71812 4.6672 xen-syms-pae-3.0.4_13138-0.33 xen-syms-pae-3.0.4_13138-0.33 handle_exception
58634 3.8107 xen-syms-pae-3.0.4_13138-0.33 xen-syms-pae-3.0.4_13138-0.33 put_page_from_l1e
56301 3.6591 xen-syms-pae-3.0.4_13138-0.33 xen-syms-pae-3.0.4_13138-0.33 do_update_va_mapping
49543 3.2199 vmlinux-2.6.16.46-0.10-xenpae vmlinux-2.6.16.46-0.10-xenpae _spin_lock
Domain 0, P...
2008 Mar 04
5
crypting remote data
I don't know if this is the propper place to ask for new funcionality, but
after searching the website i didn't find another place to do it.
I'm very sorry if I`m asking this in the wrong place.
It would be greatful to have crypting funcionality added to rsync, appart
from using ssh to crypt transmissions.
I know this is not the original purpose for rsync, but anyway it's a fact
2013 Aug 26
5
[RFC PATCH 0/2] GLOBAL() macro for asm code.
Hello,
This series has been split into two patches, one for arm and one for x86. I
figured that this was easier than doing it as a single combined patch,
especially as the changes are functionally independent.
x86 has been boot tested, but arm has not even been compile tested as I lack a
suitable cross compiler. However, the changes are just text replacement, so I
dont expect any issues.
The
2009 Jan 16
0
[LLVMdev] cygwin mmap problem
...you build LLVM on cygwin, the mmap problem discussed here:
http://www.cygwin.com/ml/cygwin/2009-01/msg00501.html
can crash llc:
$ dd bs=1080K count=1 if=/dev/random of=x.bc
1+0 records in
1+0 records out
1105920 bytes (1.1 MB) copied, 0.167 s, 6.6 MB/s
$ llc x.bc
17418 [main] llc 3596 _cygtls::handle_exceptions: Error while
dumping state (probably corrupted stack)
Segmentation fault (core dumped)
The problem is that MemoryBuffer::getFile() uses getpagesize() to
determine whether it's OK to mmap() a file, but on cygwin mmap()
doesn't really obey the page size returned by getpagesize().
In my...
2009 Sep 02
6
SXCE 121 Kernel Panic while installing NetBSD 5.0.1 PVM DomU
...712 (xdb5) online
Sep 2 18:56:36 glaurung genunix: /xpvd/xdb@42,51728 (xdb6) online
Sep 2 18:56:37 glaurung genunix: /xpvd/xnb@42,0 (xnbo3) online
Xen panic[dom=0xffff8300defb2080/vcpu=0xffff8300dfcdc080]: Xen BUG at mm.c:101
ffff828c8024f558 xpv:do_invalid_op+4d1
ffff828c8024f5f8 xpv:handle_exception+45
ffff828c8024f6d8 xpv:map_pages_to_xen+471
ffff828c8024f768 xpv:get_page_from_l1e+464
ffff828c8024f7c8 xpv:ptwr_emulated_update+142
ffff828c8024f848 xpv:ptwr_emulated_cmpxchg+a9
ffff828c8024f878 xpv:x86_emulate+525f
ffff828c8024fe68 xpv:ptwr_do_page_fault+12e
ffff828c8024fed8 xpv...
2007 Apr 03
0
Release: VMKNOPPIX(20070328) with Trusted Boot
...nt 100000
samples % app name symbol name
15904 61.6625 qemu-dm (no symbols)
1741 6.7502 libqt-mt.so.3.3.7 (no symbols)
1432 5.5521 libshadow.so (no symbols)
702 2.7218 domain1-modules (no symbols)
649 2.5163 libc-2.3.6.so (no symbols)
361 1.3997 bash (no symbols)
283 1.0972 xen-syms-3.0.4-1 handle_exception
216 0.8375 libfb.so (no symbols)
133 0.5157 xen-syms-3.0.4-1 hypercall
130 0.5040 ld-2.3.6.so (no symbols)
128 0.4963 vmlinux-syms-2.6.16.33-xen hypercall_page
124 0.4808 Xorg (no symbols)
122 0.4730 python2.4 (no symbols)
=== Download ====================================================...
2007 Mar 27
0
[PATCH] make all performance counter per-cpu
...ebx)
cmpl $NR_hypercalls,%eax
jae bad_hypercall
- PERFC_INCR(PERFC_hypercalls, %eax)
+ PERFC_INCR(PERFC_hypercalls, %eax, %ebx)
#ifndef NDEBUG
/* Create shadow parameters and corrupt those not used by this call. */
pushl %eax
@@ -429,7 +429,7 @@ handle_exception:
movl %esp,%edx
pushl %edx # push the cpu_user_regs pointer
GET_CURRENT(%ebx)
- PERFC_INCR(PERFC_exceptions, %eax)
+ PERFC_INCR(PERFC_exceptions, %eax, %ebx)
call *exception_table(,%eax,4)
addl $4,%esp
mo...
2020 Apr 10
0
Wine release 5.6
...Add gdb register types to the register maps.
winedbg: Support qXfer:features:read request.
winedbg: Remove the use of gdb specific register length.
winedbg: Use target pointer size in indirect string access.
winedbg: Add support for hardware watchpoints.
winedbg: Clean handle_exception return values.
winedbg: Clean handle_debug_event return value.
winedbg: Recompute signal from debug event as needed.
winedbg: Don't wait or load the wine loader module.
winedbg: Use debug event code in packet_reply_status.
Serge Gautherie (2):
include: Remove r...
2019 Aug 09
117
[RFC PATCH v6 00/92] VM introspection
The KVM introspection subsystem provides a facility for applications running
on the host or in a separate VM, to control the execution of other VM-s
(pause, resume, shutdown), query the state of the vCPUs (GPRs, MSRs etc.),
alter the page access bits in the shadow page tables (only for the hardware
backed ones, eg. Intel's EPT) and receive notifications when events of
interest have taken place