You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have no idea how easy it would be to upstream changes like this, but the problem I'm facing is the following:
When spidermonkey encounters an error (E.g. a failed assertion), it prints to stderr.
I have a PR on the servo side which redirects stderr to the hilog logging system, but that uses a 2nd thread, which means that if the user sees the failed assertion is highly racy (does the logging thread log before the process dies).
Spidermonkey solves this on android by directly using __android_log_print and friends. We would probably need something like that too for OpenHarmony.
I guess Firefox currently probably does not have any plans to support OpenHarmony,but I'm wondering if they would accept pull requests adding OH support like above?
The text was updated successfully, but these errors were encountered:
I have no idea how easy it would be to upstream changes like this, but the problem I'm facing is the following:
When spidermonkey encounters an error (E.g. a failed assertion), it prints to stderr.
I have a PR on the servo side which redirects stderr to the hilog logging system, but that uses a 2nd thread, which means that if the user sees the failed assertion is highly racy (does the logging thread log before the process dies).
Spidermonkey solves this on android by directly using
__android_log_print
and friends. We would probably need something like that too for OpenHarmony.I guess Firefox currently probably does not have any plans to support OpenHarmony,but I'm wondering if they would accept pull requests adding OH support like above?
The text was updated successfully, but these errors were encountered: