Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gloop/thread/thread.h
Original file line number Diff line number Diff line change
Expand Up @@ -532,12 +532,12 @@ int LiveThread_CreatorStack(const LiveThread* thread, int max_pcs,
// the context of each thread.
//
// For each thread 't' known to the Thread system, if for_each is
// non-NULL, call
// non-nullptr, call
//
// (*for_each)(for_each_arg, t)
//
// from the context of the thread which invoked Thread_ForEach. If
// in_each is non-NULL and either for_each is NULL or returns true,
// in_each is non-nullptr and either for_each is nullptr or returns true,
// call
//
// (*in_each)(in_each_arg, t)
Expand Down
Loading