1. 10 May, 2019 11 commits
  2. 09 May, 2019 13 commits
  3. 08 May, 2019 1 commit
  4. 07 May, 2019 8 commits
  5. 06 May, 2019 4 commits
  6. 05 May, 2019 2 commits
  7. 04 May, 2019 1 commit
    • compiler: add __returns_twice attribute · 633cb8be
      Christian Brauner authored
      The returns_twice attribute tells the compiler that a function may return more
      than one time. The compiler will ensure that all registers are dead before
      calling such a function and will emit a warning about the variables that may be
      clobbered after the second return from the function. Examples of such functions
      are setjmp and vfork. The longjmp-like counterpart of such function, if any,
      might need to be marked with the noreturn attribute.
      Signed-off-by: 's avatarChristian Brauner <christian.brauner@ubuntu.com>