linux.hh (6683:5e0fcc528fe5) linux.hh (6684:04cba5a03e2e)
1/*
2 * Copyright (c) 2004-2009 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 48 unchanged lines hidden (view full) ---

57
58 public:
59
60 //@{
61 /// Basic Linux types.
62 typedef uint64_t size_t;
63 typedef uint64_t off_t;
64 typedef int64_t time_t;
1/*
2 * Copyright (c) 2004-2009 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 48 unchanged lines hidden (view full) ---

57
58 public:
59
60 //@{
61 /// Basic Linux types.
62 typedef uint64_t size_t;
63 typedef uint64_t off_t;
64 typedef int64_t time_t;
65 typedef int64_t clock_t;
65 typedef uint32_t uid_t;
66 typedef uint32_t gid_t;
67 //@}
68
69 /// Stat buffer. Note that we can't call it 'stat' since that
70 /// gets #defined to something else on some systems. This type
71 /// can be specialized by architecture specific "Linux" classes
72 typedef struct {

--- 113 unchanged lines hidden ---
66 typedef uint32_t uid_t;
67 typedef uint32_t gid_t;
68 //@}
69
70 /// Stat buffer. Note that we can't call it 'stat' since that
71 /// gets #defined to something else on some systems. This type
72 /// can be specialized by architecture specific "Linux" classes
73 typedef struct {

--- 113 unchanged lines hidden ---