]> granicus.if.org Git - postgresql/commit
On HPUX, shl_load should be called with options BIND_IMMEDIATE rather
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 26 Apr 2000 23:35:34 +0000 (23:35 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 26 Apr 2000 23:35:34 +0000 (23:35 +0000)
commit6a4fa7eccb1cca133721a4b1b7ae6d6e0881171e
tree58243e6c10ed67c4f81275c7ee662d6dbb9af38d
parent00645eb1fd733b4fa765f97b74d59abe7e27bff6
On HPUX, shl_load should be called with options BIND_IMMEDIATE rather
than BIND_DEFERRED.  That way, if the loaded library has unresolved
references, shl_load fails cleanly.  As we had it, shl_load would
succeed and then the dynlinker would call abort() when we try to call
into the loaded library.  abort()ing a backend is uncool.
src/backend/port/dynloader/hpux.c