solaris.hh (3113:a6811aaea654) solaris.hh (3122:f6d56fc0a12d)
1/*
2 * Copyright (c) 2004-2005 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;

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

51///
52class Solaris : public OperatingSystem
53{
54
55 public:
56
57 //@{
58 /// Basic Solaris types.
1/*
2 * Copyright (c) 2004-2005 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;

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

51///
52class Solaris : public OperatingSystem
53{
54
55 public:
56
57 //@{
58 /// Basic Solaris types.
59/* typedef uint64_t size_t;
59 typedef uint64_t size_t;
60 typedef uint64_t off_t;
61 typedef int64_t time_t;
62 typedef int32_t uid_t;
63 typedef int32_t gid_t;
64 typedef uint64_t rlim_t;
65 typedef uint64_t ino_t;
66 typedef uint64_t dev_t;
67 typedef uint32_t mode_t;
60 typedef uint64_t off_t;
61 typedef int64_t time_t;
62 typedef int32_t uid_t;
63 typedef int32_t gid_t;
64 typedef uint64_t rlim_t;
65 typedef uint64_t ino_t;
66 typedef uint64_t dev_t;
67 typedef uint32_t mode_t;
68 typedef uint32_t nlink_t;*/
68 typedef uint32_t nlink_t;
69 //@}
70
71 struct tgt_timespec {
72 int64_t tv_sec;
73 int64_t tv_nsec;
74 };
75
76 /// Stat buffer. Note that we can't call it 'stat' since that

--- 56 unchanged lines hidden ---
69 //@}
70
71 struct tgt_timespec {
72 int64_t tv_sec;
73 int64_t tv_nsec;
74 };
75
76 /// Stat buffer. Note that we can't call it 'stat' since that

--- 56 unchanged lines hidden ---