コード例 #1
0
ファイル: unwind-resume.c プロジェクト: czankel/xtensa-glibc
void
_Unwind_Resume (struct _Unwind_Exception *exc)
{
  if (__builtin_expect (libgcc_s_resume == NULL, 0))
    init ();
  libgcc_s_resume (exc);
}
コード例 #2
0
ファイル: unwind-resume.c プロジェクト: cms-externals/glibc
void
_Unwind_Resume (struct _Unwind_Exception *exc)
{
  _maybe_init ();
  libgcc_s_resume (exc);
}