Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
try fix compilation
  • Loading branch information
kumaraditya303 committed Jan 21, 2025
commit 2c1e93e77f8ef395089309005e52e29652333241
2 changes: 1 addition & 1 deletion Modules/_asynciomodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -3748,8 +3748,8 @@ add_tasks_interp(PyInterpreterState *interp, PyListObject *tasks)
struct llist_node *head = &interp->asyncio_tasks_head;
_PyThreadStateImpl *thead = (_PyThreadStateImpl *)interp->threads.head;

traverse:
struct llist_node *node;
traverse:
Comment thread
kumaraditya303 marked this conversation as resolved.
Outdated
llist_for_each_safe(node, head) {
TaskObj *task = llist_data(node, TaskObj, task_node);
// The linked list holds borrowed references to task
Expand Down