~ubuntu-branches/ubuntu/utopic/mariadb-5.5/utopic-security

« back to all changes in this revision

Viewing changes to storage/xtradb/os/os0stacktrace.c

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2014-08-27 21:12:36 UTC
  • mfrom: (2.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20140827211236-se41hwfe4xy0hpef
* d/control: Removed Provides: libmysqlclient-dev (Closes: #759309)
* d/control: Removed Provides: libmysqld-dev with same motivation
* Re-introduced tha HPPA build patch as the upstream fix wasn't complete
* Fixed all kFreeBSD build and test suite issues
* Added Italian translation (Closes: #759813)

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
#elif defined(__sparc__)
93
93
        struct sigcontext* sc = (struct sigcontext*) ucontext;
94
94
#if __WORDSIZE == 64
95
 
        caller_address = (void*) scp->sigc_regs.tpc ;
 
95
        caller_address = (void*) sc->sigc_regs.tpc ;
96
96
#else
97
 
        pnt = (void*) scp->si_regs.pc ;
 
97
        caller_address = (void*) sc->si_regs.pc ;
98
98
#endif
99
99
#elif defined(__i386__)
100
100
        ucontext_t* uc = (ucontext_t*) ucontext;