Displaying 20 results from an estimated 42783 matches for "exception".
2005 Feb 28
0
winetools problem on amd64
...home/webster/.wine/drive_c
Wine 20050111
wine is executed as wine
Parameters are --noexit
Version of Wine is OK.
Calls to wine are executed as wine.
Config is /home/webster/.wine/winetools.log.
CDROM is /mnt/cdrom.
Choice is Install Windows system software
\*new\* fake Windows drive
wine: Unhandled exception (thread 0009), starting debugger...
wine: Unhandled exception (thread 000b), starting debugger...
wine: Unhandled exception (thread 000d), starting debugger...
wine: Unhandled exception (thread 000f), starting debugger...
wine: Unhandled exception (thread 0011), starting debugger...
wine: Unhandled...
2011 May 25
0
EVE Online random crashes
Hey there, when I'm playing EVE online I get random crashes while I'm playing. These always occur while I'm out in space, never when I'm updating my trade orders.
Using ati drivers: 10.11
Wine: 1.3.20
This is shown in console when the game crashes...
Code:
An exception has occurred. It has been logged in the log server as exception #8
An exception has occurred. It has been logged in the log server as exception #9
An exception has occurred. It has been logged in the log server as exception #10
An exception has occurred. It has been logged in the log server as...
2014 May 02
3
[LLVMdev] Question about implementing exceptions, especially to the VMKit team
Hi Kevin,
To elaborate on Philip's point, depending on the state Pyston's
runtime already is in, you may have the choice of using a hybrid of a
"pending exception" word in your runtime thread structure, and an
implicit alternate ("exceptional") return address for calls into
functions that may throw. This lets you elide the check on the
pending exception word after calls by turning them into invokes that
unwind into a landingpad containing a g...
2014 May 01
4
[LLVMdev] Question about implementing exceptions, especially to the VMKit team
Hi all, I'm working on implementing exceptions in Pyston, and I was hoping
to get some guidance from the list. I think I've learned enough about
C++-style DWARF exceptions to convince myself I have a workable approach,
but then I found this VMKit paper (2010) which says
The exception manager: To manage exceptions, J3 reserves a
> word...
2005 Jun 11
0
Re: Asterisk-Users Digest, Vol 11, Issue 77
...s belows:
sangoma card, connected with E1, CAS Signalling.
I have two problem.
1. The asterisk don't received any DTMF when caller input to
2. when i dial to system, the caller hear bad sounds. monitor on console. asterisk show error.
Jun 11 12:15:45 WARNING[1496]: channel.c:1447 ast_read: Exception flag set on 'UniCall/6-1', but
no exception handler
Jun 11 12:15:45 WARNING[1496]: channel.c:1447 ast_read: Exception flag set on 'UniCall/6-1', but
no exception handler
Jun 11 12:15:45 WARNING[1496]: channel.c:1447 ast_read: Exception flag set on 'UniCall/6-1', but
no excep...
2008 Apr 26
1
gem fetching error
I am trying to install some application using gem, but I keep on getting
the error. I tried with ''gem clean'' and ''gem update''. The latter gives
the following error (the same error is replicable when I try any ruby
applications):
# gem update --debug
Exception `Errno::ENOENT'' at
/usr/lib/ruby/site_ruby/1.8/rubygems/config_file.rb:51 - No such file or
directory - /root/.gemrc
Exception `NameError'' at
/usr/lib/ruby/site_ruby/1.8/rubygems/command_manager.rb:145 -
uninitialized constant Gem::Commands::BuildCommand
Exception `NameError'&...
2006 Aug 08
3
[LLVMdev] build error
>From CVS:
llvm[3]: Compiling SJLJ-Exception.cpp for Debug build (bytecode)
SJLJ-Exception.cpp:16:19: cstdlib: No such file or directory
SJLJ-Exception.cpp:17:19: cassert: No such file or directory
SJLJ-Exception.cpp: In function `void SJLJDestructor(llvm_exception*)':
SJLJ-Exception.cpp:43: error: `free' undeclared (first use this fu...
2018 May 01
2
Disabling Exception in LLVM
Hi Chris,
Thanks for answering, Can u clarify on this comment mentioned in
https://github.com/Z3Prover/z3/issues/861 .
cplusplus no exception support · Issue #861 · Z3Prover/z3 · GitHub
- LLVM's *source code* does not use exceptions for performance reasons
and so is compiled by default with -fno-exceptions. When using LLVM's
libraries via it's C++ interface it is important to match how LLVM was
built (i.e. do not...
2020 Aug 14
2
Exceptions and performance
...ug 13, 2020 at 6:11 PM Haoran Xu <haoranxu510 at gmail.com> wrote:
>
> Thanks for the insights David!
>
> For your first 3 points, is it correct to understand it as following: the external function prototypes are missing reliable information on whether the function throws and what exceptions it may throw (due to C++'s design failures and that it is impractical to maintain such information in a large codebase), which is the main cause that code using exceptions cannot be optimized as effectively as code that does not.
That (lack of precise throw information for external functions...
2020 Aug 14
3
Exceptions and performance
On Thu, Aug 13, 2020 at 6:35 PM Haoran Xu <haoranxu510 at gmail.com> wrote:
>
> Thanks for the reply.
>
>> Sorry, yes. No difference between explicit error handling and
>> exceptions. The difference is in all the functions that don't have
>> explicit error handling but (in the exception-using equivalent code)
>> aren't marked nothrow (where, without exceptions, the compiler could
>> move the increment across the call).
>
> According to your argu...
2009 Mar 10
4
[LLVMdev] C++ Exception Handling Problem
Hello,
I'm in the process of creating a JIT and I've run into a problem with
exception handling. The situation I'm in is that my program will JIT
functions, which will call native C++ functions (part of the run-time
support). These native functions can throw exceptions. However, I don't
actually want to handle these exceptions in the JITted functions. There are
already try/ca...
2011 Aug 05
0
[LLVMdev] RFC: Exception Handling Rewrite
On Aug 4, 2011, at 4:03 PM, Peter Lawrence wrote:
> Bill,
> I believe the empty-exception-specification example is a red-herring,
> but that if you can construct an example where you think a landing-pad
> requires multiple filter lists then I think we can then have a productive
> conversation about it.
>
> I believe we can only get multiple filter lists in a landing-pad...
2011 Aug 04
2
[LLVMdev] RFC: Exception Handling Rewrite
Bill,
I believe the empty-exception-specification example is a red-
herring,
but that if you can construct an example where you think a landing-pad
requires multiple filter lists then I think we can then have a
productive
conversation about it.
I believe we can only get multiple filter lists in a landing-pad if
we attempt
to me...
2018 May 01
0
Disabling Exception in LLVM
LLVM does not allow the use of exceptions in our code. We do not allow throwing or catching them. That does not mean you cannot compile the code with exceptions enabled, it just means we don't use them.
Clang is a full C++ compiler. Even though LLVM & Clang do not use exceptions in their implementation, Clang does support compili...
2007 Jul 31
2
controller exceptions
Since Merb has the lovely property of rendering the output of an
action, using ruby-level exceptions to render error pages in Merb
could be a cute way to approach error handling.
Suppose one has an action for editing a product which you would like
to restrict to administrators:
def edit
raise AdminAccessReqired unless session[:user] and session[:user].admin?
@product = Product.find(pa...
2011 Jun 12
5
[LLVMdev] Is LLVM expressive enough to represent asynchronous exceptions?
Is LLVM expressive enough to represent asynchronous exceptions?
---------------------------------------------------------------
Summary: Need new LLVM instructions or extending of all instructions.
C++ exceptions are synchronous: the compiler knows when/where they are
being raised.
Asynchronous exceptions can be raised at any time. For example, an
integer...
2007 Nov 25
4
[LLVMdev] OCaml and Exceptions
On Nov 25, 2007, at 11:49, Jon Harrop wrote:
> On Sunday 25 November 2007 12:23, Gordon Henriksen wrote:
>
>> On 2007-11-24, at 21:58, Jon Harrop wrote:
>>
>>> - Exceptions
>>
>> http://llvm.org/docs/ExceptionHandling.html
>>
>> LLVM's exception support is tuned toward DWARF "zero-cost
>> exceptions," i.e. C++ exception handling. Anton Korobeynikov and
>> Duncan Sands (who is working on Ada) are probably the exper...
2020 Aug 14
2
Exceptions and performance
....com> wrote:
>
> Hello David and Sterling, thanks for the reply!
>
> I have no intention to heat up the discussion, please pardon me if I asked questions that might sound silly to you -- it's just that I truly didn't understand since I'm not expert in llvm or optimizer or exception handling at all.
>
>> I believe one of the main reasons your understanding there might be
>> incorrect: Not every function returns an error code. But essentially every function can throw
>
> I think if a function could throw, then it *should* return an error code in the no-exce...
2010 Nov 25
2
[LLVMdev] RFC: Exception Handling Proposal II
...landing pads.
This is the part that escapes me... but I haven't spent too much time
thinking about inlining EH information yet.
> OK :) Essentially what happens is as follows: when running destructors
> when exiting a scope (which may be a nested scope), if a destructor throws
> an exception then any remaining destructors are first run, then the
> Program_Error exception is thrown at the point of the scope exit. This
> may be caught by an enclosing handler.
That's a neat model.
What happens if two (or more) exceptions are thrown while you're
cleaning up another? For in...
2011 May 22
6
How to capture correctly a specific exception
I a using delayed_job, and I am raising an exception this way :
config/initializers/custom_exceptions.rb
class RemoteLockerException < StandardError; end
class RemoteLockerDenied < StandardError; end
lib/instruction_request_job.rb
class InstructionRequestJob < Struct.new(:style, :request_id)
def perform
....
> connector = Rem...