mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 14:40:30 +03:00
std.stdio: use proper block comments
This commit is contained in:
parent
140aa0da1f
commit
62b208f28d
1 changed files with 14 additions and 9 deletions
23
std/stdio.d
23
std/stdio.d
|
@ -3177,16 +3177,21 @@ void main()
|
|||
/// Used to specify the lock type for $(D File.lock) and $(D File.tryLock).
|
||||
enum LockType
|
||||
{
|
||||
/// Specifies a _read (shared) lock. A _read lock denies all processes
|
||||
/// write access to the specified region of the file, including the
|
||||
/// process that first locks the region. All processes can _read the
|
||||
/// locked region. Multiple simultaneous _read locks are allowed, as
|
||||
/// long as there are no exclusive locks.
|
||||
/**
|
||||
* Specifies a _read (shared) lock. A _read lock denies all processes
|
||||
* write access to the specified region of the file, including the
|
||||
* process that first locks the region. All processes can _read the
|
||||
* locked region. Multiple simultaneous _read locks are allowed, as
|
||||
* long as there are no exclusive locks.
|
||||
*/
|
||||
read,
|
||||
/// Specifies a read/write (exclusive) lock. A read/write lock denies all
|
||||
/// other processes both read and write access to the locked file region.
|
||||
/// If a segment has an exclusive lock, it may not have any shared locks
|
||||
/// or other exclusive locks.
|
||||
|
||||
/**
|
||||
* Specifies a read/write (exclusive) lock. A read/write lock denies all
|
||||
* other processes both read and write access to the locked file region.
|
||||
* If a segment has an exclusive lock, it may not have any shared locks
|
||||
* or other exclusive locks.
|
||||
*/
|
||||
readWrite
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue