~ubuntu-branches/ubuntu/utopic/libunwind/utopic-proposed

« back to all changes in this revision

Viewing changes to src/x86/Ginit_local-x86.c

  • Committer: Bazaar Package Importer
  • Author(s): Matthieu Delahaye
  • Date: 2005-04-22 11:12:14 UTC
  • mto: (4.1.1 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20050422111214-0m74olipxly1ra8a
Tags: upstream-0.98.5
ImportĀ upstreamĀ versionĀ 0.98.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* libunwind - a platform-independent unwind library
2
 
   Copyright (c) 2002-2003 Hewlett-Packard Development Company, L.P.
3
 
        Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
4
 
 
5
 
This file is part of libunwind.
6
 
 
7
 
Permission is hereby granted, free of charge, to any person obtaining
8
 
a copy of this software and associated documentation files (the
9
 
"Software"), to deal in the Software without restriction, including
10
 
without limitation the rights to use, copy, modify, merge, publish,
11
 
distribute, sublicense, and/or sell copies of the Software, and to
12
 
permit persons to whom the Software is furnished to do so, subject to
13
 
the following conditions:
14
 
 
15
 
The above copyright notice and this permission notice shall be
16
 
included in all copies or substantial portions of the Software.
17
 
 
18
 
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19
 
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20
 
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21
 
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22
 
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23
 
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24
 
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  */
25
 
 
26
 
#include "unwind_i.h"
27
 
#include "init.h"
28
 
 
29
 
#ifdef UNW_REMOTE_ONLY
30
 
 
31
 
PROTECTED int
32
 
unw_init_local (unw_cursor_t *cursor, ucontext_t *uc)
33
 
{
34
 
  return -UNW_EINVAL;
35
 
}
36
 
 
37
 
#else /* !UNW_REMOTE_ONLY */
38
 
 
39
 
PROTECTED int
40
 
unw_init_local (unw_cursor_t *cursor, ucontext_t *uc)
41
 
{
42
 
  struct cursor *c = (struct cursor *) cursor;
43
 
 
44
 
  if (tdep_needs_initialization)
45
 
    tdep_init ();
46
 
 
47
 
  Debug (2, "(cursor=%p)\n", c);
48
 
 
49
 
  c->dwarf.as = unw_local_addr_space;
50
 
  c->dwarf.as_arg = uc;
51
 
  return common_init (c);
52
 
}
53
 
 
54
 
#endif /* !UNW_REMOTE_ONLY */