mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-16 14:18:27 +00:00
@ -18,7 +18,7 @@
|
||||
|
||||
namespace Genode { namespace Trace {
|
||||
|
||||
typedef uint64_t Timestamp;
|
||||
using Timestamp = uint64_t;
|
||||
|
||||
/*
|
||||
* In Linux/AARCH64, the 'mrs' instruction cannot be executed in user land.
|
||||
|
@ -81,7 +81,7 @@ class Genode::Capability_space_tpl : Noncopyable
|
||||
{
|
||||
private:
|
||||
|
||||
typedef CAP_DATA Data;
|
||||
using Data = CAP_DATA;
|
||||
|
||||
/**
|
||||
* Supplement Native_capability::Data with the meta data needed to
|
||||
|
@ -110,7 +110,7 @@ namespace {
|
||||
|
||||
private:
|
||||
|
||||
typedef Genode::size_t size_t;
|
||||
using size_t = Genode::size_t;
|
||||
|
||||
msghdr _msg { };
|
||||
iovec _iovec { };
|
||||
|
@ -427,7 +427,7 @@ namespace {
|
||||
|
||||
struct Global_allocator : Allocator
|
||||
{
|
||||
typedef Genode::size_t size_t;
|
||||
using size_t = Genode::size_t;
|
||||
|
||||
Alloc_result try_alloc(size_t size) override { return malloc(size); }
|
||||
|
||||
|
Reference in New Issue
Block a user