make #includes consistent
[hiphop-php.git] / hphp / runtime / ext / ext_apd.cpp
blob07cf3cb151608c607a9ca909ecafc0e46442de0b
1 /*
2 +----------------------------------------------------------------------+
3 | HipHop for PHP |
4 +----------------------------------------------------------------------+
5 | Copyright (c) 2010- Facebook, Inc. (http://www.facebook.com) |
6 | Copyright (c) 1997-2010 The PHP Group |
7 +----------------------------------------------------------------------+
8 | This source file is subject to version 3.01 of the PHP license, |
9 | that is bundled with this package in the file LICENSE, and is |
10 | available through the world-wide-web at the following url: |
11 | http://www.php.net/license/3_01.txt |
12 | If you did not receive a copy of the PHP license and are unable to |
13 | obtain it through the world-wide-web, please send a note to |
14 | license@php.net so we can mail you a copy immediately. |
15 +----------------------------------------------------------------------+
18 #include "hphp/runtime/ext/ext_apd.h"
20 namespace HPHP {
21 ///////////////////////////////////////////////////////////////////////////////
23 bool f_override_function(CStrRef name, CStrRef args, CStrRef code) {
24 throw NotSupportedException(__func__, "dynamic coding is not supported");
27 bool f_rename_function(CStrRef orig_name, CStrRef new_name) {
28 throw NotSupportedException(__func__, "dynamic coding is not supported");
31 void f_apd_set_browser_trace() {
32 throw NotSupportedException(__func__, "apd is not supported");
35 String f_apd_set_pprof_trace(CStrRef dumpdir /* = null_string */,
36 CStrRef frament /* = null_string */) {
37 throw NotSupportedException(__func__, "apd is not supported");
40 bool f_apd_set_session_trace_socket(CStrRef ip_or_filename, int domain,
41 int port, int mask) {
42 throw NotSupportedException(__func__, "apd is not supported");
45 void f_apd_stop_trace() {
46 throw NotSupportedException(__func__, "apd is not supported");
49 bool f_apd_breakpoint() {
50 throw NotSupportedException(__func__, "apd is not supported");
53 bool f_apd_continue() {
54 throw NotSupportedException(__func__, "apd is not supported");
57 bool f_apd_echo(CStrRef output) {
58 throw NotSupportedException(__func__, "apd is not supported");
61 ///////////////////////////////////////////////////////////////////////////////