e78cc1544d
- Limit the range of port numbers to 30-bits. - Parse the ports as 64-bit values when reading from the wire in the debugger protocol. R=hausner@google.com Review URL: https://codereview.chromium.org//217693002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@34542 260f80e4-7a28-3924-810f-c04153c831b5
31 lines
543 B
C++
31 lines
543 B
C++
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#ifndef VM_RANDOM_H_
|
|
#define VM_RANDOM_H_
|
|
|
|
#include "vm/globals.h"
|
|
#include "vm/allocation.h"
|
|
|
|
namespace dart {
|
|
|
|
class Random {
|
|
public:
|
|
Random();
|
|
~Random();
|
|
|
|
uint32_t NextUInt32();
|
|
|
|
private:
|
|
void NextState();
|
|
|
|
uint64_t _state;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(Random);
|
|
};
|
|
|
|
} // namespace dart
|
|
|
|
#endif // VM_RANDOM_H_
|