Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ziglang/zig
base: f25c1c6858ea
Choose a base ref
...
head repository: ziglang/zig
compare: 84e952c230dd
Choose a head ref
  • 5 commits
  • 9 files changed
  • 1 contributor

Commits on Mar 10, 2018

  1. Configuration menu
    Copy the full SHA
    61a02d9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    20011a7 View commit details
    Browse the repository at this point in the history
  3. improvements to stack traces

     * @Panic generates an error return trace
     * printing an error return trace no longer interferes with
       normal stack traces.
     * instead of ignore_frame_count, we look at the return address
       when you call panic, and that's the first stack trace function
       makes stack traces much cleaner - the error return trace
       flows gracefully into the stack trace
    andrewrk committed Mar 10, 2018
    Configuration menu
    Copy the full SHA
    60b2031 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3b3649b View commit details
    Browse the repository at this point in the history
  5. fix await multithreaded data race

    coro return was reading from a value that coro await was
    writing to. that wasn't how it was designed to work, it
    was an implementation mistake.
    
    this commit also has some work-in-progress code for fixing
    error return traces across suspend points.
    andrewrk committed Mar 10, 2018
    Configuration menu
    Copy the full SHA
    84e952c View commit details
    Browse the repository at this point in the history