Skip to content
This repository has been archived by the owner on Jul 3, 2018. It is now read-only.

Commit

Permalink
Merge pull request #150 from brendandahl/aes
Browse files Browse the repository at this point in the history
Create gecko entry script point during uv event loop.
  • Loading branch information
mykmelez authored Oct 14, 2016
2 parents 6603fe7 + 8eef3ea commit 6a4b862
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions positron/webidl/NodeBindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ void NodeBindings::UvRunOnce() {
MOZ_ASSERT(cx);
JSObject* globalObject = JS::CurrentGlobalOrNull(cx);
MOZ_ASSERT(globalObject);
dom::AutoEntryScript aes(globalObject, "NodeBindings::UvRunOnce");

This comment has been minimized.

Copy link
@Ryuno-Ki

Ryuno-Ki Oct 14, 2016

aes reminds me on Advanced Encryption Standard... I'll take a look at whether it is used quite and add a glossary entry in that case.

In this context here the meaning is obvious.


// Deal with uv events.
int r = uv_run(uv_loop_, UV_RUN_NOWAIT);
Expand Down

1 comment on commit 6a4b862

@TaskClusterRobot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.