Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 697943 Details for
Bug 911712
[abrt] gdb-7.5.1-32.fc18: bsearch_cmp: Process /usr/bin/gdb was killed by signal 11 (SIGSEGV)
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
DirectFB test case (source code)
internal.c (text/plain), 1.78 KB, created by
Ilyes Gouta
on 2013-02-15 18:45:22 UTC
(
hide
)
Description:
DirectFB test case (source code)
Filename:
MIME Type:
Creator:
Ilyes Gouta
Created:
2013-02-15 18:45:22 UTC
Size:
1.78 KB
patch
obsolete
> >#include <stdio.h> >#include <string.h> >#include <stdlib.h> > >#include <directfb.h> >#include <idirectfb.h> >#include <display/idirectfbsurface.h> > >int >main( int argc, char *argv[] ) >{ > int i; > DFBResult ret; > IDirectFB *dfb; > > ret = DirectFBInit( &argc, &argv ); > if (ret) { > D_DERROR( ret, "JPEG: DirectFBInit() failed!\n" ); > return ret; > } > > ret = DirectFBCreate( &dfb ); > if (ret) { > D_DERROR( ret, "JPEG: DirectFBCreate() failed!\n" ); > return ret; > } > > dfb->SetCooperativeLevel( dfb, DFSCL_EXCLUSIVE ); > > for (i = 0; i < 1024 * 128; i++) > { > IDirectFB_data *data = (IDirectFB_data*)dfb->priv; > > CoreSurfaceConfig config; > CoreSurfaceBufferLock src_lock = { .pitch = 0 }; > > CoreSurface* surface; > > config.size.w = 256; > config.size.h = 256; > config.format = DSPF_NV12; > > dfb_surface_create_simple( data->core, > config.size.w, > config.size.h, > config.format, > DSCS_BT601, > DSCAPS_VIDEOONLY, > CSTF_EXTERNAL, > 0, > NULL, > &surface ); > > dfb_surface_lock_buffer( surface, > CSBR_BACK, CSAID_CPU, > CSAF_WRITE, &src_lock ); > > dfb_surface_unlock_buffer( surface, &src_lock ); > dfb_surface_unref( surface ); > > printf("iteration: %d\n", i); > } > >out: > dfb->Release( dfb ); > > return 0; >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 911712
:
697904
|
697905
|
697906
|
697907
|
697908
|
697909
|
697910
|
697911
|
697912
|
697913
|
697941
|
697942
| 697943 |
713725
|
713727