IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

C Discussion :

origine de l'erreur incomprise Bus Error (lib GLUT OpenGL)


Sujet :

C

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Candidat au Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Décembre 2011
    Messages
    2
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Industrie

    Informations forums :
    Inscription : Décembre 2011
    Messages : 2
    Par défaut origine de l'erreur incomprise Bus Error (lib GLUT OpenGL)
    Bonjour, si je viens quérir de l'aide ici c'est que je n'ai pas réussi malgré mes recherches à comprendre mon erreur.
    Je programme un tetris avec la librairie GLUT de OpenGL. Le problème survient lorsque que je désire déplacer la pièce vers la gauche. Ceci viens de la manière de détecter la collision du bords gauche. Mais je ne trouve pas mon erreur. Code disponible en pièce jointe.
    voici mon code:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    #include <stdlib.h> /*Utilisé pour la fonction "exit"*/
    #include <math.h>
    #include <string.h>
    #include <stdio.h>
    #include <stdarg.h>
    #include <time.h>
     
    #ifdef __APPLE__
    #include <OpenGL/OpenGL.h>
    #include <GLUT/glut.h>
    #else
    #include <GL/glut.h>
    #endif
     
    #define X_MIN 100        // Les positions du cadre
    #define X_MAX 350
    #define Y_MIN 050
    #define Y_MAX 550
     
     
    /*fonction update timer*/
    /*fonction décrémente*/
     
    /******************************************---Variables********************************************************************************************/               
    int pieces[7][4][4][4]={
                            {//L
                                {//p1
                                    {0,0,0,0},
                                    {0,1,1,0},
                                    {0,1,0,0},
                                    {0,1,0,0}
                                },
     
                                {//p2
                                    {0,0,0,0},
                                    {0,1,1,1},
                                    {0,0,0,1},
                                    {0,0,0,0}
                                },
     
                                {//p3
                                    {0,0,0,0},
                                    {0,0,1,0},
                                    {0,0,1,0},
                                    {0,1,1,0}
                                },
     
                                {//p4
                                    {0,0,0,0},
                                    {0,1,0,0},
                                    {0,1,1,1},
                                    {0,0,0,0}
                                }
                            },
     
                            {//L2
                                {//p1
                                    {0,0,0,0},
                                    {0,1,1,0},
                                    {0,0,1,0},
                                    {0,0,1,0}
                                },
     
                                {//p2
                                    {0,0,0,0},
                                    {0,0,0,1},
                                    {0,1,1,1},
                                    {0,0,0,0}
                                },
     
                                {//p3
                                    {0,0,0,0},
                                    {0,1,0,0},
                                    {0,1,0,0},
                                    {0,1,1,0}
                                },
     
                                {//4
                                    {0,0,0,0},
                                    {0,1,1,1},
                                    {0,1,0,0},
                                    {0,0,0,0}
                                }
                            },
     
                            {//barre
                                {//bh
                                    {0,0,0,0},
                                    {1,1,1,1},
                                    {0,0,0,0},
                                    {0,0,0,0}
                                },
     
                                {//bv
                                    {0,1,0,0},
                                    {0,1,0,0},
                                    {0,1,0,0},
                                    {0,1,0,0}
                                },
                                {//bh
                                    {0,0,0,0},
                                    {1,1,1,1},
                                    {0,0,0,0},
                                    {0,0,0,0}
                                },
     
                                {//bv
                                    {0,1,0,0},
                                    {0,1,0,0},
                                    {0,1,0,0},
                                    {0,1,0,0}
     
                                }
                            },
     
                            {//carre
                                {//p1
                                    {0,0,0,0},
                                    {0,1,1,0},
                                    {0,1,1,0},
                                    {0,0,0,0}
                                },
                                {//p2
                                    {0,0,0,0},
                                    {0,1,1,0},
                                    {0,1,1,0},
                                    {0,0,0,0}
                                },
                                {//p3
                                    {0,0,0,0},
                                    {0,1,1,0},
                                    {0,1,1,0},
                                    {0,0,0,0}
                                },
                                {//p4
                                    {0,0,0,0},
                                    {0,1,1,0},
                                    {0,1,1,0},
                                    {0,0,0,0}
                                }
                            },
                            {//T
                                {//p1
                                    {0,0,0,0},
                                    {0,1,1,1},
                                    {0,0,1,0},
                                    {0,0,0,0}
                                },
                                {//p2
                                    {0,0,0,0},
                                    {0,1,0,0},
                                    {0,1,1,0},
                                    {0,1,0,0}
                                },
                                {//p3
                                    {0,0,0,0},
                                    {0,0,1,0},
                                    {0,1,1,1},
                                    {0,0,0,0}
                                },
                                {//p4
                                    {0,0,0,0},
                                    {0,0,1,0},
                                    {0,1,1,0},
                                    {0,0,1,0}
                                }
                            },
                            {//S
                                {//p1
                                    {0,0,0,0},
                                    {0,1,1,0},
                                    {0,0,1,1},
                                    {0,0,0,0}
                                },
                                {//p2
                                    {0,0,0,0},
                                    {0,0,1,0},
                                    {0,1,1,0},
                                    {0,1,0,0}
                                },
                                {//p3
                                    {0,0,0,0},
                                    {0,1,1,0},
                                    {0,0,1,1},
                                    {0,0,0,0}
                                },
                                {//p4
                                    {0,0,0,0},
                                    {0,0,1,0},
                                    {0,1,1,0},
                                    {0,1,0,0}
                                }
                            },
     
                            {//Z
                                {//p1
                                    {0,0,0,0},
                                    {0,0,1,1},
                                    {0,1,1,0},
                                    {0,0,0,0}
                                },
                                {//p2
                                    {0,0,0,0},
                                    {0,1,0,0},
                                    {0,1,1,0},
                                    {0,0,1,0}
                                },
                                {//p3
                                    {0,0,0,0},
                                    {0,0,1,1},
                                    {0,1,1,0},
                                    {0,0,0,0}
                                },
                                {//p4
                                    {0,0,0,0},
                                    {0,1,0,0},
                                    {0,1,1,0},
                                    {0,0,1,0}
                                }
                            }
                        };
     
    int terrain[22][12]={{0,0,0,0,0,0,0,0,0,0,0,0},
                         {0,0,0,0,0,0,0,0,0,0,0,0},
                         {0,0,0,0,0,0,0,0,0,0,0,0},
                         {0,0,0,0,0,0,0,0,0,0,0,0},
                         {0,0,0,0,0,0,0,0,0,0,0,0},
                         {0,0,0,0,0,0,0,0,0,0,0,0},
                         {0,0,0,0,0,0,0,0,0,0,0,0},
                         {0,0,0,0,0,0,0,0,0,0,0,0},
                         {0,0,0,0,0,0,0,0,0,0,0,0},
                         {0,0,0,0,0,0,0,0,0,0,0,0},
                         {0,0,0,0,0,0,0,0,0,0,0,0},
                         {0,0,0,0,0,0,0,0,0,0,0,0},
                         {0,0,0,0,0,0,0,0,0,0,0,0},
                         {0,0,0,0,0,0,0,0,0,0,0,0},
                         {0,0,0,0,0,0,0,0,0,0,0,0},
                         {0,0,0,0,0,0,0,0,0,0,0,0},
                         {0,0,0,0,0,0,0,0,0,0,0,0},
                         {0,0,0,0,0,0,0,0,0,0,0,0},
                         {0,0,0,0,0,0,0,0,0,0,0,0},
                         {0,0,0,0,0,0,0,0,0,0,0,0},
                         {0,0,0,0,0,0,0,0,0,0,0,0},
                         {0,0,0,0,0,0,0,0,0,0,0,0}};
     
    int terrainfix[22][12]={{1,1,1,1,1,1,1,1,1,1,1,1},
                         {1,0,0,0,0,0,0,0,0,0,0,1},
                         {1,0,0,0,0,0,0,0,0,0,0,1},
                         {1,0,0,0,0,0,0,0,0,0,0,1},
                         {1,0,0,0,0,0,0,0,0,0,0,1},
                         {1,0,0,0,0,0,0,0,0,0,0,1},
                         {1,0,0,0,0,0,0,0,0,0,0,1},
                         {1,0,0,0,0,0,0,0,0,0,0,1},
                         {1,0,0,0,0,0,0,0,0,0,0,1},
                         {1,0,0,0,0,0,0,0,0,0,0,1},
                         {1,0,0,0,0,0,0,0,0,0,0,1},
                         {1,0,0,0,0,0,0,0,0,0,0,1},
                         {1,0,0,0,0,0,0,0,0,0,0,1},
                         {1,0,0,0,0,0,0,0,0,0,0,1},
                         {1,0,0,0,0,0,0,0,0,0,0,1},
                         {1,0,0,0,0,0,0,0,0,0,0,1},
                         {1,0,0,0,0,0,0,0,0,0,0,1},
                         {1,0,0,0,0,0,0,0,0,0,0,1},
                         {1,0,0,0,0,0,0,0,0,0,0,1},
                         {1,0,0,0,0,0,0,0,0,0,0,1},
                         {1,0,0,0,0,0,0,0,0,0,0,1},
                         {1,1,1,1,1,1,1,1,1,1,1,1}};
     
    int piece_choisie[4][4]={{0}};
    int score=0;
    int x,y;
    int i;int d=1;
    int my=450, mx=100;
     
    int choix; int orientation=0 ;
    /***choix*/
    void determination()
       {
        srand(time(NULL));
        choix= rand()%6;
        printf (" choix = %d \n", choix);
     
        }
    /******************************************---Base/Carre---****************************************************************************************/
    void base(int x,int y) // creation de la base qui servira pour toutes les figures (ensemble de carre) float r,float v,float b
    {
    // float colr = (rand()%255)/255.0;
    // float colv = (rand()%255)/255.0;
    // float colb = (rand()%255)/255.0;
    int colr=0;
    int colv=1;
    int colb=1;    
        glBegin(GL_POLYGON);
        glColor3f(colr,colv,colb);
        glVertex2f(x*25,y*25);
        glColor3f(colr,colv,0);
        glVertex2f(25+x*25,y*25);
        glColor3f(colr,colv,colb);
        glVertex2f(25+x*25,25+y*25);
        glColor3f(1,1,1);
        glVertex2f(x*25,25+y*25);
        glEnd();
        glFlush();
        glutSwapBuffers() ; 
     }
     /************************/
     int Collision(int terrain[22][12],int terrainfix[22][12],int piece_choisie[4][4],int my,int mx)
     {   
        int i,j;
        for(i=0;i<4;i++)
        {
            for(j=0;j<4;j++)
            {
                if(piece_choisie[i][j]==1 && terrainfix[i+my][j+mx]==1) // permet de garder les contours lorsque la piece les approches
                {
                return 1;
     
                }
                if(piece_choisie[i][j]==1 && terrain[i+my][j+mx]==1) // permet de garder les contours lorsque la piece les approches
                {
                return 1;
     
                }
            }
        }
        return 0;
     
    }
     
     
    /******************************************---Chute---**********************************************************************************************/
    int Chute(int y, int x)
    {
     
    if(my>0)
        {
          my=my-1;
          printf (" chute my = %d \n", my);
          printf (" chute mx = %d \n", mx);
          glutPostRedisplay();
        }
     
    else
        {
        my=my;
        printf (" chute my = %d \n", my);
        printf (" chute mx = %d \n", mx);
        int i,j;
        for(i=0;i<4;i++)
            {
                for(j=0;j<4;j++)
                {
                terrain[i+my][j+mx]=terrain[i+my][j+mx]+piece_choisie[i][j];
     
                }
            }
     
        for( x=0;x<12;x++)
        {
            for(y=0;y<22;y++)
            {
     
             printf (" terrain[%d][%d] = %d \n", y, x, terrain[y][x]);
     
            }
        }     
        }
        return 0;
    }
     
    /******************************************---Dessine les pieces---********************************************************************************/
     
    void dessin_piece(int pieces[7][4][4][4])
    {
     
     for( x=0;x<4;x++)
     {
         for(y=0;y<4;y++)
         {
             piece_choisie[y][x]=pieces[choix][orientation][y][x];
             printf (" piece[%d][%d][%d][%d] = %d \n", choix, orientation, y, x, pieces[choix][orientation][y][x]);
     
             if(piece_choisie[y][x]==1)
             {
                 base(x,y);
             }
        }
     }
    }
     
    /******************************************---Dessine le terrain---********************************************************************************/
    void dessin_terrainfix(int terrainfix[22][12])
    {
     
     for( x=0;x<12;x++)
     {
         for(y=0;y<22;y++)
         {
             if(terrainfix[y][x]==1)
             {
                 base(x,y);
             }
        }
     }
    }
    void dessin_terrain(int terrain[22][12])
    {
     
     for( x=0;x<12;x++)
     {
         for(y=0;y<22;y++)
         {
             if(terrain[y][x]==1)
             {
                 base(x,y);
             }
        }
     }
    }
    /******************************************---Fonction pour utiliser du texte---*******************************************************************/
    void bitmap_output(int x,int y,char *string,void *font) {
      int len,i;
      glRasterPos2f(x,y);
      len = (int) strlen(string);
      for (i = 0; i < len; i++) {
        glutBitmapCharacter(font,string[i]); }
    }
    /******************************************---Fenetre---*******************************************************************************************/
     
     
    void dessin(void) //fonction de dessin
    {
        glClear(GL_COLOR_BUFFER_BIT);
        glLoadIdentity();
        glColor3f(1, 0, 0);     
        bitmap_output(470,350,"Score:",GLUT_BITMAP_HELVETICA_18);
        glTranslatef(100,25,0);    
        dessin_terrainfix(terrainfix);
        dessin_terrain(terrain);
        printf (" dessin mx = %d \n ", mx);
        glTranslatef(mx,my,0);
        Chute(my,mx);
        dessin_piece(pieces);
     
    }
     
     
     
    /******************************************---Restructuration de la fenetre et changement de repere---*********************************************/
    void reshape(int w, int h)
    {
        glViewport(0, 0, (GLsizei) w, (GLsizei) h);
        glMatrixMode(GL_PROJECTION);
        glLoadIdentity();
        glOrtho(0, 600, 0, 600, -1, 1);
        glMatrixMode(GL_MODELVIEW);
        glLoadIdentity();
     
    }
    /******************************************---Fonctions de Déplacements---*************************************************************************/
    void deplacement_gauche()
    {
        if(Collision(terrain,terrainfix,piece_choisie,my,mx-1)==0)
        {
        mx=mx-5;
        printf (" key mx = %d \n", mx);
        glutPostRedisplay();
        }
        else
        {
        mx=mx;
        }
    }
    /******************************************---Touches Special du Clavier---*************************************************************************/ 
    void GestionSpecial(int key, int x, int y)
    {
    switch (key)
      {
      case GLUT_KEY_RIGHT:
     
            if(mx<200)
            {mx=mx+5;
            printf (" key mx = %d \n", mx);
            glutPostRedisplay();
            break;}
            else
            {mx=mx;
            break;}
     
      case GLUT_KEY_LEFT:
            deplacement_gauche();break;
     
     
      case GLUT_KEY_UP:
     
            if(my<450)
            {my=my+1;
            printf (" key my = %d \n", my);
            glutPostRedisplay();
            break;}
            else
            {my=my;
            break;}
     
      case GLUT_KEY_DOWN:
     
            if(my>0)
            {my=my-5;
            printf (" key my = %d \n", my);
            glutPostRedisplay();
            break;}
            else
            {my=my;
            break;}
     
      case GLUT_KEY_F1 :
            glutPostRedisplay() ; 
            break;
     
      }
    }
     
    /******************************************---Touches du Clavier---*********************************************************************************/
    void keyboard(unsigned char key, int x, int y) 
    { 
      switch (key) 
      { 
      case ' ': 
      if(orientation!=3)
       {
        orientation=orientation+1 ; 
        glutPostRedisplay();
        break; 
       }
       else
       {
       orientation=0;
       glutPostRedisplay();
       break;}
     
     
      case 99 /*c*/:
        if(choix!=6)
       {
        choix=choix+1 ; 
        glutPostRedisplay() ; 
        break;
       }
       else
       {
       choix=0;
       glutPostRedisplay();
       break;}
     
       case 120/*x*/:
     
        printf (" dessin \n");
        srand(time(NULL));
        choix= rand()%6;
        glutPostRedisplay() ;
        break;
     
      case 27 /* Esc */: 
        exit(1) ; 
      } 
    } 
     
     
     
     
     
    /******************************************---Fonction Principal---*********************************************************************************/
    int main(int argc, char **argv) 
    { 
     
      glutInit(&argc, argv) ; 
      glutInitWindowSize(600,600);
      glutInitWindowPosition(300,150);
      glutInitDisplayMode(GLUT_RGBA | GLUT_DOUBLE) ; 
      glutCreateWindow("Tetris") ;
      determination();    
      glutDisplayFunc(dessin) ;
      glutReshapeFunc(reshape);
      //glutMotionFunc(motion) ;
      glutKeyboardFunc(keyboard) ;
      glutSpecialFunc(GestionSpecial); 
      glutMainLoop() ; 
      return 0 ; 
    }
    J'espère que vous pourrez m'aider.
    Merci.
    Fichiers attachés Fichiers attachés
    • Type de fichier : c main.c (11,6 Ko, 66 affichages)

  2. #2
    Responsable 2D/3D/Jeux


    Avatar de LittleWhite
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Mai 2008
    Messages
    27 118
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Ingénieur développement logiciels

    Informations forums :
    Inscription : Mai 2008
    Messages : 27 118
    Billets dans le blog
    148
    Par défaut
    Bonjour,

    Pour moi, il y a un problème d'affichage / nettoyage écran (il clignote le tetris).
    Lorsque la pièce est posée, si j'appuie sur la touche de droite, plein d'autres apparaissent n'importe comment.
    L'appuie de gauche, à mon premier essai a résulter dans une erreur de segmentation. Je ressaie avec un débogueur (GDB) et là, ça ne plante pas, mais la pièce traverse le mur vers la gauche.
    Lorsqu'une erreur de segmentation se présente mais qui disparait dans le débogueur, ce n'est pas bon signe et prouve que vous faites des choses étranges avec la mémoire.

    Du coup, j'ai demandé à valgrind (un analyseur de mémoire) de voir ce qui se passe.
    Je me suis pris ça :
    ==1839== Invalid read of size 4
    ==1839== at 0x40134E: Collision (main.c:314)
    ==1839== by 0x401A19: deplacement_gauche (main.c:463)
    ==1839== by 0x401AFE: GestionSpecial (main.c:491)
    ==1839== by 0x504DB8F: glutMainLoopEvent (in /usr/lib/libglut.so.3.9.0)
    ==1839== by 0x504DC66: glutMainLoop (in /usr/lib/libglut.so.3.9.0)
    ==1839== by 0x401D28: main (main.c:587)
    ==1839== Address 0x6085f0 is not stack'd, malloc'd or (recently) free'd
    ==1839== Process terminating with default action of signal 11 (SIGSEGV)
    ==1839== Access not within mapped region at address 0x6085F0
    ==1839== at 0x40134E: Collision (main.c:314)
    ==1839== by 0x401A19: deplacement_gauche (main.c:463)
    ==1839== by 0x401AFE: GestionSpecial (main.c:491)
    ==1839== by 0x504DB8F: glutMainLoopEvent (in /usr/lib/libglut.so.3.9.0)
    ==1839== by 0x504DC66: glutMainLoop (in /usr/lib/libglut.so.3.9.0)
    ==1839== by 0x401D28: main (main.c:587)
    Ce qui devrait pas mal vous guider
    Vous souhaitez participer à la rubrique 2D/3D/Jeux ? Contactez-moi

    Ma page sur DVP
    Mon Portfolio

    Qui connaît l'erreur, connaît la solution.

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Erreur incomprise avec DBI et perl
    Par duedos dans le forum SGBD
    Réponses: 3
    Dernier message: 04/07/2006, 11h43
  2. HelpWorkShop, erreur : hhc 6003 error the file ...
    Par kivoch dans le forum Outils
    Réponses: 2
    Dernier message: 16/03/2006, 12h31
  3. bus error
    Par salseropom dans le forum C
    Réponses: 3
    Dernier message: 15/12/2005, 11h59
  4. Message d'erreur ADODB.Field error '80020009'
    Par tonyC dans le forum ASP
    Réponses: 2
    Dernier message: 23/07/2005, 16h00
  5. erreur ora-12801 : error signaled in parallel query server
    Par dngaya dans le forum Administration
    Réponses: 5
    Dernier message: 15/04/2004, 16h25

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo