Changeset 139
- Timestamp:
- 03/27/09 11:12:21 (3 years ago)
- Files:
-
- trunk/LICENSE_1_0.txt (added)
- trunk/license.txt (deleted)
- trunk/src/common/core/exception.d (modified) (1 diff)
- trunk/src/common/core/memory.d (modified) (1 diff)
- trunk/src/common/core/runtime.d (modified) (1 diff)
- trunk/src/common/core/stdc/errno.c (modified) (1 diff)
- trunk/src/common/core/sync/barrier.d (modified) (1 diff)
- trunk/src/common/core/sync/condition.d (modified) (1 diff)
- trunk/src/common/core/sync/config.d (modified) (2 diffs)
- trunk/src/common/core/sync/exception.d (modified) (1 diff)
- trunk/src/common/core/sync/mutex.d (modified) (1 diff)
- trunk/src/common/core/sync/rwmutex.d (modified) (1 diff)
- trunk/src/common/core/sync/semaphore.d (modified) (1 diff)
- trunk/src/common/core/thread.d (modified) (1 diff)
- trunk/src/compiler/dmd/util/string.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/common/core/exception.d
r75 r139 3 3 * mechanism to alter system-level error handling. 4 4 * 5 * Copyright: Copyright (C) 2005-2009 Sean Kelly. All rights reserved.6 * License: BSD Style, see LICENSE5 * Copyright: Copyright Sean Kelly 2005 - 2009. 6 * License: <a href="http://www.boost.org/LICENSE_1_0.txt>Boost License 1.0</a>. 7 7 * Authors: Sean Kelly 8 * 9 * Copyright Sean Kelly 2005 - 2009. 10 * Distributed under the Boost Software License, Version 1.0. 11 * (See accompanying file LICENSE_1_0.txt or copy at 12 * http://www.boost.org/LICENSE_1_0.txt) 8 13 */ 9 14 module core.exception; trunk/src/common/core/memory.d
r110 r139 3 3 * any other OS or API-level memory management facilities. 4 4 * 5 * Copyright: Copyright (C) 2005-2009 Sean Kelly. All rights reserved.6 * License: BSD Style, see LICENSE5 * Copyright: Copyright Sean Kelly 2005 - 2009. 6 * License: <a href="http://www.boost.org/LICENSE_1_0.txt>Boost License 1.0</a>. 7 7 * Authors: Sean Kelly 8 * 9 * Copyright Sean Kelly 2005 - 2009. 10 * Distributed under the Boost Software License, Version 1.0. 11 * (See accompanying file LICENSE_1_0.txt or copy at 12 * http://www.boost.org/LICENSE_1_0.txt) 8 13 */ 9 14 module core.memory; trunk/src/common/core/runtime.d
r98 r139 2 2 * The runtime module exposes information specific to the D runtime code. 3 3 * 4 * Copyright: Copyright (C) 2005-2009 Sean Kelly. All rights reserved.5 * License: BSD Style, see LICENSE4 * Copyright: Copyright Sean Kelly 2005 - 2009. 5 * License: <a href="http://www.boost.org/LICENSE_1_0.txt>Boost License 1.0</a>. 6 6 * Authors: Sean Kelly 7 * 8 * Copyright Sean Kelly 2005 - 2009. 9 * Distributed under the Boost Software License, Version 1.0. 10 * (See accompanying file LICENSE_1_0.txt or copy at 11 * http://www.boost.org/LICENSE_1_0.txt) 7 12 */ 8 13 module core.runtime; trunk/src/common/core/stdc/errno.c
r131 r139 2 2 * This file contains wrapper functions for macro-defined C rouines. 3 3 * 4 * Copyright: Copyright (C) 2005-2009 Sean Kelly. All rights reserved.5 * License: BSD Style, see LICENSE4 * Copyright: Copyright Sean Kelly 2005 - 2009. 5 * License: <a href="http://www.boost.org/LICENSE_1_0.txt>Boost License 1.0</a>. 6 6 * Authors: Sean Kelly 7 * 8 * Copyright Sean Kelly 2005 - 2009. 9 * Distributed under the Boost Software License, Version 1.0. 10 * (See accompanying file LICENSE_1_0.txt or copy at 11 * http://www.boost.org/LICENSE_1_0.txt) 7 12 */ 8 13 #include <errno.h> trunk/src/common/core/sync/barrier.d
r75 r139 3 3 * a group of threads. 4 4 * 5 * Copyright: Copyright (C) 2005-2009 Sean Kelly. All rights reserved.6 * License: BSD Style, see LICENSE5 * Copyright: Copyright Sean Kelly 2005 - 2009. 6 * License: <a href="http://www.boost.org/LICENSE_1_0.txt>Boost License 1.0</a>. 7 7 * Authors: Sean Kelly 8 * 9 * Copyright Sean Kelly 2005 - 2009. 10 * Distributed under the Boost Software License, Version 1.0. 11 * (See accompanying file LICENSE_1_0.txt or copy at 12 * http://www.boost.org/LICENSE_1_0.txt) 8 13 */ 9 14 module core.sync.barrier; trunk/src/common/core/sync/condition.d
r113 r139 3 3 * checking. 4 4 * 5 * Copyright: Copyright (C) 2005-2009 Sean Kelly. All rights reserved.6 * License: BSD style: $(LICENSE)5 * Copyright: Copyright Sean Kelly 2005 - 2009. 6 * License: <a href="http://www.boost.org/LICENSE_1_0.txt>Boost License 1.0</a>. 7 7 * Authors: Sean Kelly 8 * 9 * Copyright Sean Kelly 2005 - 2009. 10 * Distributed under the Boost Software License, Version 1.0. 11 * (See accompanying file LICENSE_1_0.txt or copy at 12 * http://www.boost.org/LICENSE_1_0.txt) 8 13 */ 9 14 module core.sync.condition; trunk/src/common/core/sync/config.d
r113 r139 3 3 * specific to this package. 4 4 * 5 * Copyright: Copyright (C) 2005-2009 Sean Kelly. All rights reserved.6 * License: BSD style: $(LICENSE)5 * Copyright: Copyright Sean Kelly 2005 - 2009. 6 * License: <a href="http://www.boost.org/LICENSE_1_0.txt>Boost License 1.0</a>. 7 7 * Authors: Sean Kelly 8 * 9 * Copyright Sean Kelly 2005 - 2009. 10 * Distributed under the Boost Software License, Version 1.0. 11 * (See accompanying file LICENSE_1_0.txt or copy at 12 * http://www.boost.org/LICENSE_1_0.txt) 8 13 */ 9 14 module core.sync.config; … … 33 38 mvtspec( t, delta ); 34 39 } 35 36 40 41 37 42 void mvtspec( inout timespec t, long delta ) 38 43 { trunk/src/common/core/sync/exception.d
r75 r139 3 3 * a group of threads. 4 4 * 5 * Copyright: Copyright (C) 2005-2009 Sean Kelly. All rights reserved.6 * License: BSD Style, see LICENSE5 * Copyright: Copyright Sean Kelly 2005 - 2009. 6 * License: <a href="http://www.boost.org/LICENSE_1_0.txt>Boost License 1.0</a>. 7 7 * Authors: Sean Kelly 8 * 9 * Copyright Sean Kelly 2005 - 2009. 10 * Distributed under the Boost Software License, Version 1.0. 11 * (See accompanying file LICENSE_1_0.txt or copy at 12 * http://www.boost.org/LICENSE_1_0.txt) 8 13 */ 9 14 module core.sync.exception; trunk/src/common/core/sync/mutex.d
r77 r139 3 3 * access. 4 4 * 5 * Copyright: Copyright (C) 2005-2009 Sean Kelly. All rights reserved.6 * License: BSD style: $(LICENSE)5 * Copyright: Copyright Sean Kelly 2005 - 2009. 6 * License: <a href="http://www.boost.org/LICENSE_1_0.txt>Boost License 1.0</a>. 7 7 * Authors: Sean Kelly 8 * 9 * Copyright Sean Kelly 2005 - 2009. 10 * Distributed under the Boost Software License, Version 1.0. 11 * (See accompanying file LICENSE_1_0.txt or copy at 12 * http://www.boost.org/LICENSE_1_0.txt) 8 13 */ 9 14 module core.sync.mutex; trunk/src/common/core/sync/rwmutex.d
r77 r139 3 3 * access and mutually exclusive write access. 4 4 * 5 * Copyright: Copyright (C) 2005-2009 Sean Kelly. All rights reserved.6 * License: BSD style: $(LICENSE)5 * Copyright: Copyright Sean Kelly 2005 - 2009. 6 * License: <a href="http://www.boost.org/LICENSE_1_0.txt>Boost License 1.0</a>. 7 7 * Authors: Sean Kelly 8 * 9 * Copyright Sean Kelly 2005 - 2009. 10 * Distributed under the Boost Software License, Version 1.0. 11 * (See accompanying file LICENSE_1_0.txt or copy at 12 * http://www.boost.org/LICENSE_1_0.txt) 8 13 */ 9 14 module core.sync.rwmutex; trunk/src/common/core/sync/semaphore.d
r113 r139 2 2 * The semaphore module provides a general use semaphore for synchronization. 3 3 * 4 * Copyright: Copyright (C) 2005-2009 Sean Kelly. All rights reserved.5 * License: BSD Style, see LICENSE4 * Copyright: Copyright Sean Kelly 2005 - 2009. 5 * License: <a href="http://www.boost.org/LICENSE_1_0.txt>Boost License 1.0</a>. 6 6 * Authors: Sean Kelly 7 * 8 * Copyright Sean Kelly 2005 - 2009. 9 * Distributed under the Boost Software License, Version 1.0. 10 * (See accompanying file LICENSE_1_0.txt or copy at 11 * http://www.boost.org/LICENSE_1_0.txt) 7 12 */ 8 13 module core.sync.semaphore; trunk/src/common/core/thread.d
r111 r139 2 2 * The thread module provides support for thread creation and management. 3 3 * 4 * Copyright: Copyright (C) 2005-2009 Sean Kelly. All rights reserved.5 * License: BSD Style, see LICENSE4 * Copyright: Copyright Sean Kelly 2005 - 2009. 5 * License: <a href="http://www.boost.org/LICENSE_1_0.txt>Boost License 1.0</a>. 6 6 * Authors: Sean Kelly 7 * 8 * Copyright Sean Kelly 2005 - 2009. 9 * Distributed under the Boost Software License, Version 1.0. 10 * (See accompanying file LICENSE_1_0.txt or copy at 11 * http://www.boost.org/LICENSE_1_0.txt) 7 12 */ 8 13 module core.thread; trunk/src/compiler/dmd/util/string.d
r75 r139 3 3 * mechanism to alter system-level error handling. 4 4 * 5 * Copyright: Copyright (C) 2005-2009 Sean Kelly. All rights reserved.6 * License: BSD Style, see LICENSE5 * Copyright: Copyright Sean Kelly 2005 - 2009. 6 * License: <a href="http://www.boost.org/LICENSE_1_0.txt>Boost License 1.0</a>. 7 7 * Authors: Sean Kelly 8 * 9 * Copyright Sean Kelly 2005 - 2009. 10 * Distributed under the Boost Software License, Version 1.0. 11 * (See accompanying file LICENSE_1_0.txt or copy at 12 * http://www.boost.org/LICENSE_1_0.txt) 8 13 */ 9 14 module rt.util.string;
