Files
sdk/runtime/vm/random.h
T
iposva@google.com e78cc1544d - Make ports be less predictable.
- 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
2014-03-28 23:39:36 +00:00

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_