diff --git a/src/sys/lib/ogprintf.cc b/src/sys/lib/ogprintf.cc index e09f25d..9b53f59 100644 --- a/src/sys/lib/ogprintf.cc +++ b/src/sys/lib/ogprintf.cc @@ -24,6 +24,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. $Log$ + Revision 1.4 2004/05/23 01:40:19 reddawg + Spinlock + Revision 1.3 2004/05/19 17:09:50 flameshadow chg: Undid previous renaming. This now restores me as the EOOUIAD. @@ -49,9 +52,7 @@ extern "C" { #include -#include -spinLock_t printSpinLock = SPIN_LOCK_INITIALIZER; int ogPrintf(char *s); @@ -64,7 +65,6 @@ ogSurface *screen = (ogDisplay_UbixOS *)systemVitals->screen; ogBitFont *font = (ogBitFont *)systemVitals->font; - spinLock(&printSpinLock); while ('\0' != s[i]) { switch (s[i]) { @@ -122,7 +122,6 @@ screen->GetMaxX() / 2, screen->GetMaxY()); #endif - spinUnlock(&printSpinLock); return 0; } // ogPrintf }