Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | pass size argument to free() | 2014-11-03 | 1 | -3/+3 | |
| | | | | ok doug tedu | ||||
* | remove uneeded proc.h includes | 2014-09-14 | 1 | -2/+1 | |
| | | | | ok mpi@ kspillner@ | ||||
* | add a size argument to free. will be used soon, but for now default to 0. | 2014-07-12 | 1 | -3/+3 | |
| | | | | after discussions with beck deraadt kettenis. | ||||
* | Some of the line disciplines want to check for suser. Better to pass them | 2010-04-12 | 1 | -8/+7 | |
| | | | | a process instead of using curproc. ok deraadt | ||||
* | Add some extra protection against non-monotonic timestamps. ok stevesk | 2009-06-02 | 1 | -4/+9 | |
| | |||||
* | remove erroneous fldcnt test. fldcnt can never be 13 here. this is | 2009-05-06 | 1 | -3/+2 | |
| | | | | apparently a leftover from tty_nmea.c | ||||
* | don't zero sensor .value and .flags immediately after the allocation w/ M_ZERO; ok deraadt | 2009-04-26 | 1 | -2/+1 | |
| | |||||
* | make compile with #define MSTS_DEBUG; ok mbalmer@ | 2009-01-12 | 1 | -2/+1 | |
| | |||||
* | 1) remove invalid comment since first field is not message type | 2009-01-12 | 1 | -4/+4 | |
| | | | | | | | in msts 2) modify debug string to not print first field (which is not the sentence message type) ok mbalmer@ | ||||
* | comment should be epoch not midnight; ok mbalmer@ | 2009-01-12 | 1 | -2/+2 | |
| | |||||
* | use #define MAXFLDS vs. 4 here; ok mbalmer@ | 2009-01-01 | 1 | -2/+2 | |
| | |||||
* | don't need #include <sys/queue.h>; ok mbalmer@ | 2008-12-25 | 1 | -2/+1 | |
| | | | | CVS --------------------------------------------------------------------- | ||||
* | remove unused struct member; ok mbalmer@ | 2008-12-25 | 1 | -2/+1 | |
| | |||||
* | spelling in comments; ok mbalmer@ | 2008-12-25 | 1 | -3/+3 | |
| | |||||
* | Convert timeout_add() calls using multiples of hz to timeout_add_sec() | 2008-09-10 | 1 | -11/+4 | |
| | | | | | | | Really just the low-hanging fruit of (hopefully) forthcoming timeout conversions. ok art@, krw@ | ||||
* | Don't use the reference count to create the sensor name; we can end up | 2008-06-11 | 1 | -3/+6 | |
| | | | | | | with sensors with the same name. The sensor name is now ever increasing unless the reference count drops to zero, in which case the naming restarts at zero as well. | ||||
* | Report the clock status in a signal sensor, like all other timedeltas. | 2008-05-06 | 1 | -2/+14 | |
| | |||||
* | Degrade the sensor state from OK to WARNING and CRITICAL after periods of | 2008-01-06 | 1 | -10/+56 | |
| | | | | | ten minutes (same behaviour as nmea(4)). If the cable is pulled, the sensor no longer keeps the OK status forever. Tested with a PEX511 as MSTS sender. | ||||
* | Add support for the Meinberg Standard Time String format that all Meinberg | 2008-01-05 | 1 | -0/+373 | |
radio clocks can transmit over serial ports. This is implemented as a line discipline similar to nmea(4) and provides a timedelta sensor. See http://www.meinberg.de/english/specs/timestr.htm for details on the MSTS format. ldattach(8) is extended to support the "msts" line discipline and two stopbits (which some radio clocks, e.g. the C51 use). Do a "make includes" before your next system build. Initially from Maurice Janssen based on nmea(4). "go for it" deraadt |