summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdlib/system.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-04-25remove list item left in previous;jmc1-2/+1
2016-04-25remove systrace remnantstedu6-22/+13
2016-04-25remove systracetedu16-57/+34
2016-04-25boom goes the dynamitetedu9-2197/+10
2016-04-25when returning from vmd with an unknown exit reason, print the name of themlarkin1-3/+5
exit in addition to the exit code.
2016-04-25remove systracetedu2-93/+2
2016-04-25remove systracetedu7-111/+2
2016-04-25spacing / KNF error in earlier commitmlarkin1-2/+2
2016-04-25remove systracetedu8-651/+14
2016-04-25remove systracetedu1-2/+2
2016-04-25remove systrace supporttedu4-30/+5
2016-04-25remove references to systracetedu2-8/+3
2016-04-25boom goes the dynamitetedu21-8440/+0
2016-04-25unlink systrace from the build. pledge is the glorious future that awaits.tedu2-4/+3
the rest of systrace to be deleted in a serious of followup commits. ok from larger openbsd developer community
2016-04-25cr0, cr3, cr4 diagnostics / debug functions (used when VMs crash)mlarkin2-10/+131
2016-04-25Don't overwrite modifiers in the buffer when making UTF-8 strings,nicm1-3/+5
append instead.
2016-04-25use setresgid() rather than setegid, all 3 gids can go the same way.deraadt1-2/+2
discussion with millert
2016-04-25prefer setres{u,g}id() rather than manipulating both real and effectivederaadt4-22/+14
ids, it clarifies these are full revocation situations. ok millert
2016-04-25We attach acpihpet(4) and acpiec(4) without using the HID, so do notpirofti1-1/+3
report it in the dmesg. OK deraadt@, mlarkin@.
2016-04-25add a few new exit types found in newer cpusmlarkin2-2/+8
2016-04-25make vmctl 'create' usage description match the man pagemlarkin1-2/+2
2016-04-25Remove the single cache route for forwarding.mpi1-33/+19
Testing help from Hrvoje Popovski. ok mikeb@, henning@, claudio@
2016-04-25use the cps instructions introduced with armv6 instead of mrs/msrjsg1-24/+6
ok patrick@
2016-04-25Stop embedding the build time in the Perl binary.daniel1-7/+14
This is a backport of commit 6baa8d with the local addition of: undef PERL_BUILD_DATE ok afresh1@
2016-04-25prepare for possible pledging. We can't really drop privs if we're notespie1-10/+13
running as root, so don't even try. Also, have the environment reflect reality in that case.
2016-04-25now that sysmerge happens before us, no need to fallback on _pfetchespie1-15/+8
revert previous commit
2016-04-25pkgcfl was put in the old keywords bin a few generations ago...espie1-20/+1
2016-04-25kill remnants of non shared archesespie2-84/+4
2016-04-25simplifies the check for allowing only promisessemarie1-11/+9
reductions. ok deraadt@
2016-04-25removes an unneeded check on flags (used historically when tame(2) was usingsemarie1-4/+1
bitflags) ok deraadt@ jca@
2016-04-25In upgrade mode, automatically run sysmerge(8) in batch mode before fw_update(1).ajacoutot1-3/+4
Putting this at the beginning of the p2k16 hackathon so we can see if anything breaks and to get feedback about the output etc If sysmerge cannot merge/install a file automatically, login into the machine and running it interactively will ask you what you want to do with it. It may not stay in this exact form, but that's a first step and now is a good time to get it in. discussed with deraadt@ for a while ok rpe@
2016-04-25Implement atomic operations using the atomic instructions availablepatrick2-7/+298
since ARMv6K. As we also support ARMs that are older than that, guard the new atomic operations with an ifdef specifically for ARMv7. ok jsg@
2016-04-25Do not check if the CPU is inside the idle loop when enterting ddb(4).mpi2-34/+26
This check only makes sense when a frame is saved for interrupts, not for a (simulated) breakpoint. This allows us to put breakpoints in interrupt context and have them work if an interrupt fires while the CPU is idle.
2016-04-25fix whitespacejsg2-20/+20
2016-04-25Switch most of the cp14/cp15 use in .S files over to using sysreg.hjsg14-158/+172
Matched and changed by a script, verified to cause no binary change with armv7, armish, and zaurus kernels. ok patrick@