mesa: Remove _mesa_exit wrapper for exit().
authorEric Anholt <eric@anholt.net>
Tue, 22 Dec 2009 18:56:34 +0000 (10:56 -0800)
committerEric Anholt <eric@anholt.net>
Tue, 22 Dec 2009 22:20:26 +0000 (14:20 -0800)
It does nothing else while being less useful than exit() because it lacks
attributes that real exit() has.

13 files changed:
src/mesa/drivers/dri/r300/r300_emit.c
src/mesa/drivers/dri/r300/r300_state.c
src/mesa/drivers/dri/r300/r300_swtcl.c
src/mesa/drivers/dri/r300/r300_texstate.c
src/mesa/drivers/dri/r300/r300_vertprog.c
src/mesa/drivers/dri/radeon/radeon_common.c
src/mesa/main/ffvertex_prog.c
src/mesa/main/imports.c
src/mesa/main/imports.h
src/mesa/main/texenvprogram.c
src/mesa/math/m_debug_norm.c
src/mesa/tnl/t_vertex_generic.c
src/mesa/vf/vf_generic.c

index 3759ca2bea713c7416f109eadcdbf0c94030a3f1..15aeaf051480f40554de4a1958e7309c5eac3b7b 100644 (file)
@@ -117,7 +117,7 @@ GLuint r300VAPOutputCntl1(GLcontext * ctx, GLuint vp_writes)
 
        if (first_free_texcoord > 8) {
                fprintf(stderr, "\tout of free texcoords\n");
-               _mesa_exit(-1);
+               exit(-1);
        }
 
        return ret;
index da0a9dfb4cf531b220ab98fd0ae50f7af1fb127d..23f81fe790182d6b91dade41d67712cb7c3034da 100644 (file)
@@ -1311,7 +1311,7 @@ static void r300SetupTextures(GLcontext * ctx)
                fprintf(stderr,
                        "Aiiee ! mtu=%d is greater than R300_MAX_TEXTURE_UNITS=%d\n",
                        mtu, R300_MAX_TEXTURE_UNITS);
-               _mesa_exit(-1);
+               exit(-1);
        }
 
        /* We cannot let disabled tmu offsets pass DRM */
index 383c8a274b5345cbc5428c3fefeb6e67bd13aca8..93983cee2053c781f8e40571f4416618981f0bb1 100644 (file)
@@ -215,7 +215,7 @@ void r300ChooseSwtclVertexFormat(GLcontext *ctx, GLuint *_InputsRead,  GLuint *_
 
        if (first_free_tex >= ctx->Const.MaxTextureUnits) {
                fprintf(stderr, "\tout of free texcoords to write fog coordinate\n");
-               _mesa_exit(-1);
+               exit(-1);
        }
 
        R300_NEWPRIM(rmesa);
index eea3dee7bc6cfad8849337b32da12feb73cee954..78ff54574f623c5b142c0ccde812ec421304b46d 100644 (file)
@@ -256,7 +256,7 @@ static void setup_hardware_state(r300ContextPtr rmesa, radeonTexObj *t)
                        if (txformat < 0) {
                                _mesa_problem(rmesa->radeon.glCtx, "%s: Invalid format %s",
                                                          __FUNCTION__, _mesa_get_format_name(firstImage->TexFormat));
-                               _mesa_exit(1);
+                               exit(1);
                        }
                        t->pp_txformat = (uint32_t) txformat;
                }
index c2f96af2c1215de84e1a635c4e7793df2c5f254b..aa98a049aa4aad5d64ab00c5997263a3200c6f25 100644 (file)
@@ -365,7 +365,7 @@ static void r300EmitVertexProgram(r300ContextPtr r300, int dest, struct r300_ver
                        break;
                default:
                        fprintf(stderr, "%s:%s don't know how to handle dest %04x\n", __FILE__, __FUNCTION__, dest);
-                       _mesa_exit(-1);
+                       exit(-1);
        }
 }
 
index 2a2b16a54bd2bba0b9f2744f92ff157e3e6fd37f..c0b3165ddad97fed8dceb2cd82621e97c94cadc6 100644 (file)
@@ -1230,7 +1230,7 @@ int rcommonFlushCmdBuf(radeonContextPtr rmesa, const char *caller)
                fprintf(stderr, "drmRadeonCmdBuffer: %d. Kernel failed to "
                                "parse or rejected command stream. See dmesg "
                                "for more info.\n", ret);
-               _mesa_exit(ret);
+               exit(ret);
        }
 
        return ret;
index 5cfa898031edabfeb4655e157f0a432afc83e339..2d1db29cbfe556398c737b6c9c6fa23af8ce44e9 100644 (file)
@@ -357,7 +357,7 @@ static struct ureg get_temp( struct tnl_program *p )
    int bit = _mesa_ffs( ~p->temp_in_use );
    if (!bit) {
       _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__);
-      _mesa_exit(1);
+      exit(1);
    }
 
    if ((GLuint) bit > p->program->Base.NumTemporaries)
index f2ef84f35c166ba74ad0ef988865ece4bb9e756c..def045269c58647c0bd005fd9ab9875d55d24b36 100644 (file)
@@ -1239,13 +1239,3 @@ _mesa_debug( const GLcontext *ctx, const char *fmtString, ... )
 }
 
 /*@}*/
-
-
-/**
- * Wrapper for exit().
- */
-void
-_mesa_exit( int status )
-{
-   exit(status);
-}
index 7d4012a85609b1addab2e0e2793d661f1a8d2802..b01fe5b0ab98d55f551b5be93d56114c3bab58c2 100644 (file)
@@ -618,10 +618,6 @@ _mesa_error( __GLcontext *ctx, GLenum error, const char *fmtString, ... );
 extern void
 _mesa_debug( const __GLcontext *ctx, const char *fmtString, ... );
 
-extern void 
-_mesa_exit( int status );
-
-
 #ifdef __cplusplus
 }
 #endif
index f439d4addb32937004dd6fbb6f3cf59838beb48d..c69e759a117a837217bc24f8904c1824d6888dc5 100644 (file)
@@ -606,7 +606,7 @@ static struct ureg get_temp( struct texenv_fragment_program *p )
 
    if (!bit) {
       _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__);
-      _mesa_exit(1);
+      exit(1);
    }
 
    if ((GLuint) bit > p->program->Base.NumTemporaries)
@@ -634,7 +634,7 @@ static struct ureg get_tex_temp( struct texenv_fragment_program *p )
 
    if (!bit) {
       _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__);
-      _mesa_exit(1);
+      exit(1);
    }
 
    if ((GLuint) bit > p->program->Base.NumTemporaries)
index 89c632e7d59d1370379551a592c65bf0ecaab472..f9b26d804717469797b9ef68442ac69becfdea6c 100644 (file)
@@ -230,7 +230,7 @@ static int test_norm_function( normal_func func, int mtype, long *cycles )
          case VAR:
             break;
          default:
-            _mesa_exit(1);
+            exit(1);
          }
       }
    }
index fa34d11d7bdc3bd724265c1145257a48106dfc4a..99ddace73d13f1c39d2e06bea72dd71f16d3d62c 100644 (file)
@@ -210,7 +210,7 @@ static INLINE void insert_3f_xyw_err( const struct tnl_clipspace_attr *a, GLubyt
 {
    (void) a; (void) v; (void) in;
    DEBUG_INSERT;
-   _mesa_exit(1);
+   exit(1);
 }
 
 static INLINE void insert_3f_3( const struct tnl_clipspace_attr *a, GLubyte *v, const GLfloat *in )
index baa00af29a63b4ca1941cfe59380c788f555a69f..0af8893c30224902bac17138d877c8934af3114e 100644 (file)
@@ -211,7 +211,7 @@ static INLINE void insert_3f_xyw_4( const struct vf_attr *a, GLubyte *v, const G
 static INLINE void insert_3f_xyw_err( const struct vf_attr *a, GLubyte *v, const GLfloat *in )
 {
    (void) a; (void) v; (void) in;
-   _mesa_exit(1);
+   exit(1);
 }
 
 static INLINE void insert_3f_3( const struct vf_attr *a, GLubyte *v, const GLfloat *in )