~ubuntu-branches/ubuntu/raring/mesa/raring-proposed

« back to all changes in this revision

Viewing changes to src/gallium/auxiliary/os/os_misc.h

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Brulebois
  • Date: 2011-06-19 21:26:00 UTC
  • mfrom: (1.6.1 upstream) (3.3.18 sid)
  • mto: (3.3.20 sid)
  • mto: This revision was merged to the branch mainline in revision 145.
  • Revision ID: james.westby@ubuntu.com-20110619212600-rleaapdmnbtstekb
Tags: 7.11~0-2
Thank you sbuild for giving a green light when that's not actually the
case. Fix missing Pre-Depends for the libegl1-mesa-drivers package
(multiarch-support).

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
#  define os_break()  __debugbreak()
59
59
#elif defined(PIPE_OS_UNIX)
60
60
#  define os_break() kill(getpid(), SIGTRAP)
61
 
#elif defined(PIPE_OS_EMBEDDED)
62
 
void os_break(void);
63
61
#else
64
62
#  define os_break() abort()
65
63
#endif
70
68
 */
71
69
#if defined(DEBUG) || defined(PIPE_SUBSYSTEM_WINDOWS_DISPLAY) || defined(PIPE_SUBSYSTEM_WINDOWS_MINIPORT)
72
70
#  define os_abort() os_break()
73
 
#elif defined(PIPE_OS_EMBEDDED)
74
 
void os_abort(void);
75
71
#else
76
72
#  define os_abort() abort()
77
73
#endif