Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F146394180
D30987.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
767 B
Referenced Files
None
Subscribers
None
D30987.diff
View Options
diff --git a/sys/kern/kern_exec.c b/sys/kern/kern_exec.c
--- a/sys/kern/kern_exec.c
+++ b/sys/kern/kern_exec.c
@@ -1064,6 +1064,8 @@
sigfastblock_clear(td);
umtx_exec(p);
+ if (p->p_sysent->sv_onexec_old != NULL)
+ p->p_sysent->sv_onexec_old(td);
itimers_exec(p);
if (sv->sv_onexec != NULL)
sv->sv_onexec(p, imgp);
diff --git a/sys/sys/sysent.h b/sys/sys/sysent.h
--- a/sys/sys/sysent.h
+++ b/sys/sys/sysent.h
@@ -150,6 +150,7 @@
u_long *sv_hwcap2; /* Value passed in AT_HWCAP2. */
const char *(*sv_machine_arch)(struct proc *);
vm_offset_t sv_fxrng_gen_base;
+ void (*sv_onexec_old)(struct thread *td);
void (*sv_onexec)(struct proc *, struct image_params *);
void (*sv_onexit)(struct proc *);
void (*sv_ontdexit)(struct thread *td);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Mar 3, 8:39 AM (13 h, 3 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
29166753
Default Alt Text
D30987.diff (767 B)
Attached To
Mode
D30987: Only handle robust mutexes and sigfastblock on exec and exit for native FreeBSD ABIs
Attached
Detach File
Event Timeline
Log In to Comment