~ubuntu-branches/ubuntu/utopic/ltrace/utopic-proposed

« back to all changes in this revision

Viewing changes to sysdeps/linux-gnu/sparc/ptrace.h

  • Committer: Bazaar Package Importer
  • Author(s): Bhavani Shankar
  • Date: 2009-07-28 16:44:35 UTC
  • mfrom: (1.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20090728164435-d88mottol5xryqk7
Tags: 0.5.3-2ubuntu1
* Merge from debian unstable, remaining changes: LP: #404856
  - Add lpia to architecture list.
  - Use libelf-dev instead of libelfg0-dev
  - Define _LARGEFILE_SOURCE and _LARGEFILE64_SOURCE in debian/rules CFLAGS.
    The configure script has a bug where it can't properly cope with the need
    to define these before detecting the use of elfutils.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
#define PT_DETACH PTRACE_SUNDETACH
12
12
#define PTRACE_DETACH PTRACE_SUNDETACH
13
13
 
14
 
#include <asm/reg.h>
15
 
#include "ltrace.h"
 
14
#include <asm/ptrace.h>
16
15
 
17
16
typedef struct {
18
17
        int valid;
19
 
        struct regs regs;
 
18
        struct pt_regs regs;
20
19
        unsigned int func_arg[6];
21
20
        unsigned int sysc_arg[6];
22
21
} proc_archdep;