"Fossies" - the Fresh Open Source Software Archive

Member "dbg-2.15.5/dbg_bp.h" (21 Apr 2007, 1508 Bytes) of package /linux/www/old/dbg-2.15.5.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. For more information about "dbg_bp.h" see the Fossies "Dox" file reference documentation.

    1 /***************************************************************************
    2                           dbg_bp.h  -  description
    3                              -------------------
    4     begin                : Wed Sep 12 2001
    5     copyright            : (C) 2001 by Dmitri Dmitrienko
    6                          : (C) 2002, 2007 NuSphere Corp.
    7     www                  : http://dd.cron.ru
    8                          : http://www.nusphere.com/
    9     author               : written by Dmitri Dmitrienko
   10     license              : This source file is subject to version 3.0 of 
   11                            the License,  that is bundled with this package 
   12                            in the file LICENSE, and is available at through 
   13                            the world-wide-web at http://www.nusphere.com/dbg
   14  ***************************************************************************/
   15 
   16 #ifndef _DBG_BP_H_
   17 #define _DBG_BP_H_
   18 
   19 #include "php_dbg.h"
   20 
   21 void bp_array_free(bpl_array* arr);
   22 
   23 int dbg_set_breakpoint(dbg_bps_request* req, dbg_packet *pack, dbg_packet *inpack TSRMLS_DC2(DBG,E));
   24 inline int listout_bp_item(dbg_packet *pack, bp_item *bpitem, int bp_no);
   25 inline int dbg_chk_bp_hits(TSRMLS_D2(DBG,E));
   26 inline void dbg_reset_bp_isunderhit(TSRMLS_D1(DBG));
   27 inline void dbg_mark_del_temp_breakpoints(TSRMLS_D1(DBG));
   28 
   29 void dbg_rebuild_bplist_mod(mod_item* mod TSRMLS_DC1(DBG));
   30 void dbg_rebuild_bplist(TSRMLS_D1(DBG));
   31 void dbg_resolve_bp(TSRMLS_D1(DBG));
   32 
   33 void dbg_add_bp_reply(dbg_packet *pack TSRMLS_DC1(DBG));
   34 
   35 
   36 #endif