search for: 22915

Displaying 5 results from an estimated 5 matches for "22915".

Did you mean: 2915
2018 Mar 20
3
[LLD/ELF] - Should we implement .note.gnu.property and/or Intel CET in LLD ?
...ERTY_X86_FEATURE_1_SHSTK This indicates that all executable sections are compatible with SHSTK (see Section 13.1.2) where return address popped from shadow stack always matches return address popped from normal stack. It is not yet supported by gold: https://sourceware.org/bugzilla/show_bug.cgi?id=22915 But supported by bfd: https://sourceware.org/ml/binutils/2017-06/msg00285.html Support requires both compiler and linker changes. Also [3, p151] says that to support IBT the linker should generate a IBT-enabled PLT together with a second PLT. That is also what is implemented in bfd it seems: http...
2006 Jun 16
1
Dovecot+NFS: Copying messages causes failures (possible SIGABRT)
...e exact time when the connection drops: dovecot: IMAP(tkay): file mail-index-sync-update.c: line 686 (mail_index_sync_update_index): assertion failed: (view->hdr.messages_count == map->hdr.messages_count) I cannot correlate this to the user/folder, but this message is usually nearby: child 22915 (imap) killed with signal 6 -- Anthony Kay University Computing Center (541) 346-1719 GPG Fingerprint: B0DB D46A 60AF FAE7 A94A 5075 0CB4 4D88 9F4F 7F09 Perfection uncanned Like a beautiful redhead Fresh from her trailer from Spam-Ku : Tranquil Reflections on Luncheon Loaf...
2018 Mar 20
0
[LLD/ELF] - Should we implement .note.gnu.property and/or Intel CET in LLD ?
...SHSTK This indicates that all executable sections are compatible > with SHSTK (see Section 13.1.2) where return address popped from shadow stack always matches > return address popped from normal stack. > > It is not yet supported by gold: https://sourceware.org/bugzilla/show_bug.cgi?id=22915 > But supported by bfd: https://sourceware.org/ml/binutils/2017-06/msg00285.html > > Support requires both compiler and linker changes. > > Also [3, p151] says that to support IBT the linker should generate a IBT-enabled PLT > together with a second PLT. That is also what is imple...
2005 Nov 07
1
General Question: WinXP autodomain?
Hello List, I am using Samba as PDC for some time now and I want do make the process of joining the domain somewhat more elegant ;) I use partimage to deploy images of my Windows XP-installation to the computers in my lab. In order to automate the process of joining these computers to the domain, I use some small perl-scripts. 1. After installing new software, etc. I have to create a new
2006 Feb 10
4
How to do a find with conditions that contain an OR
Hi, I''m trying to do a find with a condition that has an OR on the same column. Say I only want to use find() but not find_by_sql(). I reduced my problems into the following: values = [] ... # filling up values from params Order.find(:all, :conditions => ["(action = ? OR action = ?) AND price = ?", values] For example I