View | Details | Raw Unified | Return to bug 216609 | Differences between
and this patch

Collapse All | Expand All

(-)Time.E (-14 / +9 lines)
Lines 625-633 inline __attribute__ ((__visibility__("h Link Here
625
# 81 "../../include/IceUtil/Config.h"
625
# 81 "../../include/IceUtil/Config.h"
626
# 1 "/usr/include/c++/v1/stdint.h" 1 3
626
# 1 "/usr/include/c++/v1/stdint.h" 1 3
627
# 106 "/usr/include/c++/v1/stdint.h" 3
627
# 106 "/usr/include/c++/v1/stdint.h" 3
628
628
# 119 "/usr/include/c++/v1/stdint.h" 3
629
630
631
# 1 "/usr/include/stdint.h" 1 3 4
629
# 1 "/usr/include/stdint.h" 1 3 4
632
# 35 "/usr/include/stdint.h" 3 4
630
# 35 "/usr/include/stdint.h" 3 4
633
# 1 "/usr/include/machine/_stdint.h" 1 3 4
631
# 1 "/usr/include/machine/_stdint.h" 1 3 4
Lines 695-701 typedef __uint_fast8_t uint_fast8_t; Link Here
695
typedef __uint_fast16_t uint_fast16_t;
693
typedef __uint_fast16_t uint_fast16_t;
696
typedef __uint_fast32_t uint_fast32_t;
694
typedef __uint_fast32_t uint_fast32_t;
697
typedef __uint_fast64_t uint_fast64_t;
695
typedef __uint_fast64_t uint_fast64_t;
698
# 110 "/usr/include/c++/v1/stdint.h" 2 3
696
# 120 "/usr/include/c++/v1/stdint.h" 2 3
699
# 82 "../../include/IceUtil/Config.h" 2
697
# 82 "../../include/IceUtil/Config.h" 2
700
# 104 "../../include/IceUtil/Config.h"
698
# 104 "../../include/IceUtil/Config.h"
701
# 1 "/usr/include/sys/param.h" 1 3 4
699
# 1 "/usr/include/sys/param.h" 1 3 4
Lines 39892-39903 private: Link Here
39892
    noncopyable(const noncopyable&);
39890
    noncopyable(const noncopyable&);
39893
    const noncopyable& operator=(const noncopyable&);
39891
    const noncopyable& operator=(const noncopyable&);
39894
};
39892
};
39895
# 302 "../../include/IceUtil/Config.h"
39893
# 298 "../../include/IceUtil/Config.h"
39896
typedef long long Int64;
39894
typedef long Int64;
39897
39895
# 307 "../../include/IceUtil/Config.h"
39898
39899
39900
39901
}
39896
}
39902
# 14 "../../include/IceUtil/Exception.h" 2
39897
# 14 "../../include/IceUtil/Exception.h" 2
39903
39898
Lines 44019-44025 IceUtil::Time::now(Clock clock) Link Here
44019
            ((0) ? (void)0 : __assert(__func__, "Time.cpp", 110, "0"));
44014
            ((0) ? (void)0 : __assert(__func__, "Time.cpp", 110, "0"));
44020
            throw SyscallException("Time.cpp", 111, (* __error()));
44015
            throw SyscallException("Time.cpp", 111, (* __error()));
44021
        }
44016
        }
44022
        return Time(tv.tv_sec * 1000000LL + tv.tv_usec);
44017
        return Time(tv.tv_sec * 1000000L + tv.tv_usec);
44023
44018
44024
    }
44019
    }
44025
    else
44020
    else
Lines 44031-44037 IceUtil::Time::now(Clock clock) Link Here
44031
            ((0) ? (void)0 : __assert(__func__, "Time.cpp", 157, "0"));
44026
            ((0) ? (void)0 : __assert(__func__, "Time.cpp", 157, "0"));
44032
            throw SyscallException("Time.cpp", 158, (* __error()));
44027
            throw SyscallException("Time.cpp", 158, (* __error()));
44033
        }
44028
        }
44034
        return Time(ts.tv_sec * 1000000LL + ts.tv_nsec / 1000LL);
44029
        return Time(ts.tv_sec * 1000000L + ts.tv_nsec / 1000L);
44035
44030
44036
    }
44031
    }
44037
}
44032
}
Lines 44039-44051 IceUtil::Time::now(Clock clock) Link Here
44039
Time
44034
Time
44040
IceUtil::Time::seconds(Int64 t)
44035
IceUtil::Time::seconds(Int64 t)
44041
{
44036
{
44042
    return Time(t * 1000000LL);
44037
    return Time(t * 1000000L);
44043
}
44038
}
44044
44039
44045
Time
44040
Time
44046
IceUtil::Time::milliSeconds(Int64 t)
44041
IceUtil::Time::milliSeconds(Int64 t)
44047
{
44042
{
44048
    return Time(t * 1000LL);
44043
    return Time(t * 1000L);
44049
}
44044
}
44050
44045
44051
Time
44046
Time

Return to bug 216609