summaryrefslogtreecommitdiff
path: root/external/gpl2/gettext/dist/gettext-tools/examples/hello-python/INSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'external/gpl2/gettext/dist/gettext-tools/examples/hello-python/INSTALL')
0 files changed, 0 insertions, 0 deletions
d casts in dm is not consistent, just get rid of them. 2019-12-07dm: Fix strange pointer declarationstkusumi Should be "type *name" or "type* name", but not "type * name". taken-from: DragonFlyBSD 2019-12-04dm: style + whitespace + indentation fixestkusumi No functional changes. 2019-12-03dm: Make global dm locks statictkusumi These are all per-file locks which protect dev/pdev/target structure. taken-from: DragonFlyBSD 2018-01-05use some size_t, add whitespace between functions, rcsids.christos 2017-06-01remove checks for failure after memory allocation calls that cannot fail:chs kmem_alloc() with KM_SLEEP kmem_zalloc() with KM_SLEEP percpu_alloc() pserialize_create() psref_class_create() all of these paths include an assertion that the allocation has not failed, so callers should not assert that again. 2014-10-18src is too big these days to tolerate superfluous apostrophes. It'ssnj "its", people! 2010-01-04Indent files remove unnecessary blank lines, white spaces and KNFize code.haad 2009-12-29Add private lock to dm_dev_t used for mutual exclusion for diks(9) apihaad routines. This change fixes PR kern/42532. 2009-09-09Fix bug in kmem_alloc/kmem_free of params string. Params string washaad allocated with length DM_MAX_PARAMS_SIZE and released with strlen + 1 size. Disable KM_NOSLEEP allocation because we do not need them here there is nothing critical in ioctl part of dm driver. Bug reported by jak@. 2009-04-13Destroy locks in dm_dev_free, do not allocate struct disk twice.haad 2009-03-18Ansify function definitions w/o arguments. Generated with sed.cegger 2009-03-06Fix lvm lvrename command. There was bug in dm_dev_lookup wherehaad dm_dev_lookup_name was called with device uuid. Remove dm_dev_t:dk_label is it not used anymore. 2008-12-19Merge the haad-dm branch to -current. This branch adds LVM functionality tohaad the base NetBSD system. It uses Linux LVM2 tools and our BSD licensed device-mapper driver. The device-mapper driver can be used to create virtual block devices which maps virtual blocks to real with target mapping called target. Currently these targets are available a linear, zero, error and a snapshot (this is work in progress and doesn't work yet). The lvm2tools adds lvm and dmsetup binary to based system, where the lvm tool is used to manage and administer whole LVM and the dmestup is used to communicate iwith device-mapper kernel driver. With these tools also a libdevmapper library is instaled to the base system. Building of tools and driver is currently disable and can be enabled with MKLVM=yes in mk.conf. I will add sets lists and rc.d script soon. Oked by agc@ and cube@.