Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-06-18 | Actually write all the data to stdout/stderr. | Nicholas Marriott | |
2012-06-18 | Add a skeleton mode to tmux (called "control mode") that let's tmux | Nicholas Marriott | |
commands be sent and output received on stdout. This can be used to integrate with other terminal emulators and should allow some other things to be made simpler later. More to come so doesn't do much yet and deliberately not documented. | |||
2012-06-18 | Clarify description of -W. Noted by Steve.McClellan at radisys com, ok jmc | Darren Tucker | |
2012-06-18 | document ports-readmes special-case | Marc Espie | |
2012-06-18 | Remove mention of 'three' key files since there are now four. From | Darren Tucker | |
Steve.McClellan at radisys com. | |||
2012-06-18 | RSA instead of DSA twice. From Steve.McClellan at radisys com | Darren Tucker | |
2012-06-18 | correct sizeof usage. patch from saw at online.de, ok deraadt | Darren Tucker | |
2012-06-18 | Add ~/.mg.d to FILES. Reviewed by jmc@ | lum | |
2012-06-18 | Tidy up bell code, from Thomas Adam. | Nicholas Marriott | |
2012-06-18 | fix potential use of uninitialized variable. | Charles Longeau | |
found with valgrind on -portable. ok gilles@ | |||
2012-06-18 | Add a couple of NULL pointer checks to key binding functions, from | Nicholas Marriott | |
jspenguin on SF bug 3535531. | |||
2012-06-18 | When using M-> Place cursor at the bottom of the window (minus 3 | lum | |
lines) like emacs, instead of middle of page. | |||
2012-06-18 | Do not crash when the current session has no window, fixes a bug | Nicholas Marriott | |
reported by Giorgio Lando. Fix from Thomas Adam. | |||
2012-06-18 | Removing this 'if' statement allows dired buffers to not have their | lum | |
forward and backward line pointers pointing to the same line, causing mg to spin when asked to split the window. This happens if a directory is opened via the command line sequentially first, and other windows need to opened afterwards (for other files). Since the information within this 'if' statement is updated later for files and directories I can see no problem with removing this. No regressions viewable either. Problem reported by and diff tested by jasper@ | |||
2012-06-18 | Add -a for kill-session, from Thomas Adam. | Nicholas Marriott | |
2012-06-18 | Add -a flag for detach-client, from Thomas Adam. | Nicholas Marriott | |
2012-06-18 | Simplify references to alerts in the man page, from Thomas Adam. | Nicholas Marriott | |
2012-06-18 | - add a pathnames.h | Jasper Lievisse Adriaanse | |
- some whitespace cleanup ok lum@ | |||
2012-06-18 | - explicitly use DOCMODE instead of NONBINMODE | Jasper Lievisse Adriaanse | |
ok lum@ | |||
2012-06-18 | Polish the rm -rP turd: if the fts_* routines have lstat()'ed the | Philip Guenthe | |
directory entry then use the struct stat from that instead of doing it again, and skip the rm_overwrite() call if fts_read() indicated that the entry couldn't be a regular file. ok millert@ | |||
2012-06-18 | Fix potential symlink race condition in "rm -P" by adding a check | Todd C. Miller | |
that the file we have opened is the one we expected. Also open in non-blocking mode to avoid a potential hang with FIFOs. Reported by Radoslaw A. Zarzynski. Fix adapted from NetBSD. OK guenther@ | |||
2012-06-17 | - introduce struct scheduler_info and the scheduler_info() function to fill | Gilles Chehade | |
a struct scheduler_info given a struct envelope - adapt the scheduler API and the scheduler_ramqueue backend to use the new struct scheduler_info instead of a struct envelope idea discussed with eric@ and chl@, mechanical diff, no functional change | |||
2012-06-17 | No longer restrict alloc_contiguous_pages() to memory in the low 4GB. | Miod Vallat | |
2012-06-17 | Using the LLAddr register to store our curcpu() pointer on R10k SMP kernels | Miod Vallat | |
was a nice trick, but this register is only 32-bit wide and will be sign-extended, which requires all cpu_info structs to be allocated within 2GB physical - something which may not be possible on some configurations. This diff changes IP30.MP kernels to no longer use LLAddr to store curcpu, but use unused fields of the MPConf structure in low memory, indexed with the physical processor id, which can be obtained from the Heart PRID register. | |||
2012-06-17 | Remove leftover loongson or sgi references. | Miod Vallat | |
2012-06-16 | fix bad grammar in a comment | Miod Vallat | |
2012-06-16 | When the last user disconnects, make sure we display the status line | Christiano F. Haesbaert | |
one more time. ok sthen@ | |||
2012-06-16 | rename filter.c --> filter_api.c (to be consistent with upcoming changes) | Charles Longeau | |
prompted by and ok gilles@ | |||
2012-06-16 | compat_linux: Don't hold the lock while pool_get'ing with WAITOK. | Paul Irofti | |
Okay jasper@. | |||
2012-06-16 | Protect against fd exhaustion when reopening database files. Only accept | Jonathan Matthew | |
client or control connections when there are at least 8 fds available, and close a connection before calling imsg_read if it would be unable to accept an fd from the parent process. ok gilles@ | |||
2012-06-15 | update return values for ibuf_write and msgbuf_write | Jonathan Matthew | |
ok gilles@ | |||
2012-06-15 | Add a regress test for ld.so's DF_1_NOOPEN support. | Matthew Dempsky | |
2012-06-15 | Fixes a problem where if you try to open a file that doesn't exist and has | lum | |
a name longer than LOGIN_NAME_MAX and also has a tilde at the front e.g: $ mg ~01234567890123456789012345678901 mg will give a "Login name too long" instead of opening a new buffer named ~01234567890123456789012345678901 | |||
2012-06-15 | Fix typos. | Matthew Dempsky | |
ok pig(6) | |||
2012-06-14 | - rename filter.h -> filter_api.h to be consistent with upcoming changes | Gilles Chehade | |
2012-06-14 | Add support for DF_1_NOOPEN. Based on an origional diff from matthew@. | Mark Kettenis | |
ok matthew@ | |||
2012-06-14 | - make sockaddr_as_fqdn() endian-safe | Gilles Chehade | |
bug spotted by Jan Stary fix by eric@, committing this on his behalf, ok gilles@ | |||
2012-06-14 | Add support for UCD-DISKIO-MIB. | Matthew Dempsky | |
ok sthen | |||
2012-06-14 | Add paragraph about "non-standard" mg commands. | lum | |
2012-06-14 | Allow mg to save backup files to a users home directory. | lum | |
Suggestions from eric@ and Sunil Nimmagadda. Remarks deraadt@. | |||
2012-06-14 | Remove uvm_km_kmem_grow printf. | Ariane van der Steldt | |
It's no longer required, code is stable. ok kettenis@ | |||
2012-06-14 | whitespace cleanup | Jasper Lievisse Adriaanse | |
ok ariane@ | |||
2012-06-14 | tweak pkg_info -S to separate pkgnames with @ from libraries with nothing. | Marc Espie | |
*this goes together with a bsd.port.mk change* !!! fixes some ambiguities in out-of-date, for instance. if you're parsing pkg_info -S output manually, this *WILL* change the way things work | |||
2012-06-14 | fix typo in comment | Jasper Lievisse Adriaanse | |
ok ariane@ | |||
2012-06-13 | Expose reaperproc. | Ariane van der Steldt | |
I need this for my diffs. ok guenther@ | |||
2012-06-13 | update to 1.2.1 | Robert Nagy | |
2012-06-13 | Remove duplicate description of FORK_TFORK | Philip Guenthe | |
ok jmc@ | |||
2012-06-12 | Fix loaded object sod matching: when we load libfoo.so.X.Y into | Matthew Dempsky | |
memory, we should be able to match other requests for libfoo.so.X.Z against that same object. ok kurt, kettenis | |||
2012-06-12 | The router-dead-time is only a 16-bit value in ospf v3. | Claudio Jeker | |
Found by robert at peichaer.org. OK henning@ jmc@ | |||
2012-06-12 | Explicitly check whether a BAR is big enough for a particular port instead | Mark Kettenis | |
of relying on bus_space_subregion(9) to fail. Fixes double console attachment seen by otto@ |