Created attachment 199057 [details] Use correct stack size on OpenBSD On OpenBSD, applications using webkit 2.0.1 get ** Message: console message: undefined @0: RangeError: Maximum call stack size exceeded. on startup with javascript enabled. It basically causes Javascript not to work. In StackBounds.cpp, webkit says // FIXME: remove this! - this code unsafely guesses at stack sizes! #if OS(WINDOWS) || OS(SOLARIS) || OS(OPENBSD) Well, on OpenBSD, we don't need to guess. Attached is a patch that uses stack size returned from pthread_stackseg_np. The makes things work just fine. No errors and no crashes. Been tested by multiple users. Also, on OpenBSD, hppa/hppa64 grows its stack size up, so add a define to give the hppa archs a chance to work.
Would anyone like to commit this? It has been tested and shown to fix i386/amd64/macppc.
(In reply to comment #1) > Would anyone like to commit this? It has been tested and shown to fix i386/amd64/macppc. git or svn blame the file you are changing and cc recent contributors to that file on this bug so they can review it. Then follow http://www.webkit.org/coding/contributing.html and submit the patch again.
Created attachment 202416 [details] Patch
Comment on attachment 202416 [details] Patch Rejecting attachment 202416 [details] from commit-queue. Failed to run "['/Volumes/Data/EWS/WebKit/Tools/Scripts/webkit-patch', '--status-host=webkit-queues.appspot.com', '--bot-id=webkit-cq-03', 'land-attachment', '--force-clean', '--non-interactive', '--parent-command=commit-queue', 202416, '--port=mac']" exit_code: 2 cwd: /Volumes/Data/EWS/WebKit Last 500 characters of output: -> origin/master Partial-rebuilding .git/svn/refs/remotes/origin/master/.rev_map.268f45cc-cd09-0410-ab3c-d52691b4dbfc ... Currently at 150596 = 74f0f738df2239e5026f59a7581cb5a04351add5 r150599 = 1f7190513b569f67969ff16ee88b3a53d3186922 r150600 = 49e6d85a525d1388359e9d470a4f19ff3e5e3b82 Done rebuilding .git/svn/refs/remotes/origin/master/.rev_map.268f45cc-cd09-0410-ab3c-d52691b4dbfc First, rewinding head to replay your work on top of it... Fast-forwarded master to refs/remotes/origin/master. Full output: http://webkit-queues.appspot.com/results/651042
Comment on attachment 202416 [details] Patch Clearing flags on attachment: 202416 Committed r150603: <http://trac.webkit.org/changeset /150603>
All reviewed patches have been landed. Closing bug.
Recommited in r150786 after rollout in r150621.