mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-04 16:45:24 +00:00
update copyright notice
This commit is contained in:
2
CHANGES
2
CHANGES
@@ -2,7 +2,7 @@
|
|||||||
displayed without padding. This is not a issue for
|
displayed without padding. This is not a issue for
|
||||||
currently defined algorithms but may be for future
|
currently defined algorithms but may be for future
|
||||||
hash algorithms. [RT #27925]
|
hash algorithms. [RT #27925]
|
||||||
|
|
||||||
3818. [bug] Stop lying to the optimizer that 'void *arg' is a
|
3818. [bug] Stop lying to the optimizer that 'void *arg' is a
|
||||||
constant in isc_event_allocate.
|
constant in isc_event_allocate.
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2004, 2005, 2007, 2009, 2011, 2013 Internet Systems Consortium, Inc. ("ISC")
|
* Copyright (C) 2004, 2005, 2007, 2009, 2011, 2013, 2014 Internet Systems Consortium, Inc. ("ISC")
|
||||||
* Copyright (C) 1998-2001 Internet Software Consortium.
|
* Copyright (C) 1998-2001 Internet Software Consortium.
|
||||||
*
|
*
|
||||||
* Permission to use, copy, modify, and/or distribute this software for any
|
* Permission to use, copy, modify, and/or distribute this software for any
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2008, 2009, 2011, 2012 Internet Systems Consortium, Inc. ("ISC")
|
* Copyright (C) 2008, 2009, 2011, 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
|
||||||
*
|
*
|
||||||
* Permission to use, copy, modify, and/or distribute this software for any
|
* Permission to use, copy, modify, and/or distribute this software for any
|
||||||
* purpose with or without fee is hereby granted, provided that the above
|
* purpose with or without fee is hereby granted, provided that the above
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC")
|
* Copyright (C) 2004, 2005, 2007, 2014 Internet Systems Consortium, Inc. ("ISC")
|
||||||
* Copyright (C) 1998-2001 Internet Software Consortium.
|
* Copyright (C) 1998-2001 Internet Software Consortium.
|
||||||
*
|
*
|
||||||
* Permission to use, copy, modify, and/or distribute this software for any
|
* Permission to use, copy, modify, and/or distribute this software for any
|
||||||
@@ -60,7 +60,7 @@ isc_event_allocate(isc_mem_t *mctx, void *sender, isc_eventtype_t type,
|
|||||||
|
|
||||||
isc_event_t *
|
isc_event_t *
|
||||||
isc_event_constallocate(isc_mem_t *mctx, void *sender, isc_eventtype_t type,
|
isc_event_constallocate(isc_mem_t *mctx, void *sender, isc_eventtype_t type,
|
||||||
isc_taskaction_t action, const void *arg, size_t size)
|
isc_taskaction_t action, const void *arg, size_t size)
|
||||||
{
|
{
|
||||||
isc_event_t *event;
|
isc_event_t *event;
|
||||||
void *deconst_arg;
|
void *deconst_arg;
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2008 Internet Systems Consortium, Inc. ("ISC")
|
* Copyright (C) 2008, 2014 Internet Systems Consortium, Inc. ("ISC")
|
||||||
*
|
*
|
||||||
* Permission to use, copy, modify, and/or distribute this software for any
|
* Permission to use, copy, modify, and/or distribute this software for any
|
||||||
* purpose with or without fee is hereby granted, provided that the above
|
* purpose with or without fee is hereby granted, provided that the above
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2004-2007 Internet Systems Consortium, Inc. ("ISC")
|
* Copyright (C) 2004-2007, 2014 Internet Systems Consortium, Inc. ("ISC")
|
||||||
* Copyright (C) 1998-2002 Internet Software Consortium.
|
* Copyright (C) 1998-2002 Internet Software Consortium.
|
||||||
*
|
*
|
||||||
* Permission to use, copy, modify, and/or distribute this software for any
|
* Permission to use, copy, modify, and/or distribute this software for any
|
||||||
@@ -93,9 +93,9 @@ isc_event_allocate(isc_mem_t *mctx, void *sender, isc_eventtype_t type,
|
|||||||
isc_taskaction_t action, void *arg, size_t size);
|
isc_taskaction_t action, void *arg, size_t size);
|
||||||
isc_event_t *
|
isc_event_t *
|
||||||
isc_event_constallocate(isc_mem_t *mctx, void *sender, isc_eventtype_t type,
|
isc_event_constallocate(isc_mem_t *mctx, void *sender, isc_eventtype_t type,
|
||||||
isc_taskaction_t action, const void *arg, size_t size);
|
isc_taskaction_t action, const void *arg, size_t size);
|
||||||
/*%<
|
/*%<
|
||||||
* Allocate an event structure.
|
* Allocate an event structure.
|
||||||
*
|
*
|
||||||
* Allocate and initialize in a structure with initial elements
|
* Allocate and initialize in a structure with initial elements
|
||||||
* defined by:
|
* defined by:
|
||||||
@@ -106,7 +106,7 @@ isc_event_constallocate(isc_mem_t *mctx, void *sender, isc_eventtype_t type,
|
|||||||
* ...
|
* ...
|
||||||
* };
|
* };
|
||||||
* \endcode
|
* \endcode
|
||||||
*
|
*
|
||||||
* Requires:
|
* Requires:
|
||||||
*\li 'size' >= sizeof(struct isc_event)
|
*\li 'size' >= sizeof(struct isc_event)
|
||||||
*\li 'action' to be non NULL
|
*\li 'action' to be non NULL
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2004-2007, 2009-2013 Internet Systems Consortium, Inc. ("ISC")
|
* Copyright (C) 2004-2007, 2009-2014 Internet Systems Consortium, Inc. ("ISC")
|
||||||
* Copyright (C) 1998-2001, 2003 Internet Software Consortium.
|
* Copyright (C) 1998-2001, 2003 Internet Software Consortium.
|
||||||
*
|
*
|
||||||
* Permission to use, copy, modify, and/or distribute this software for any
|
* Permission to use, copy, modify, and/or distribute this software for any
|
||||||
|
Reference in New Issue
Block a user