vptr.hh (11800:54436a1784dc) vptr.hh (14020:c9bf7a011602)
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;

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

64 {}
65
66 void
67 refresh()
68 {
69 if (!ptr)
70 return;
71
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;

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

64 {}
65
66 void
67 refresh()
68 {
69 if (!ptr)
70 return;
71
72 FSTranslatingPortProxy &proxy = tc->getVirtProxy();
72 PortProxy &proxy = tc->getVirtProxy();
73 proxy.readBlob(ptr, buffer, sizeof(T));
74 }
75
76 bool
77 operator!() const
78 {
79 return ptr == 0;
80 }

--- 55 unchanged lines hidden ---
73 proxy.readBlob(ptr, buffer, sizeof(T));
74 }
75
76 bool
77 operator!() const
78 {
79 return ptr == 0;
80 }

--- 55 unchanged lines hidden ---