~ubuntu-branches/ubuntu/saucy/libv8/saucy

« back to all changes in this revision

Viewing changes to src/v8.h

  • Committer: Package Import Robot
  • Author(s): Jérémy Lal
  • Date: 2012-04-07 16:26:13 UTC
  • mfrom: (15.1.27 sid)
  • Revision ID: package-import@ubuntu.com-20120407162613-dqo1m6w9r3fh8tst
Tags: 3.8.9.16-3
* mipsel build fixes :
  + v8_use_mips_abi_hardfloat=false, this lowers EABI requirements.
  + v8_can_use_fpu_instructions=false, detect if FPU is present.
  + set -Wno-unused-but-set-variable only on mipsel.

Show diffs side-by-side

added added

removed removed

Lines of Context:
106
106
                                          Context* context);
107
107
 
108
108
  // Idle notification directly from the API.
109
 
  static bool IdleNotification();
 
109
  static bool IdleNotification(int hint);
 
110
 
 
111
  static void AddCallCompletedCallback(CallCompletedCallback callback);
 
112
  static void RemoveCallCompletedCallback(CallCompletedCallback callback);
 
113
  static void FireCallCompletedCallback(Isolate* isolate);
110
114
 
111
115
 private:
112
116
  static void InitializeOncePerProcess();
114
118
  // True if engine is currently running
115
119
  static bool is_running_;
116
120
  // True if V8 has ever been run
117
 
  static bool has_been_setup_;
 
121
  static bool has_been_set_up_;
118
122
  // True if error has been signaled for current engine
119
123
  // (reset to false if engine is restarted)
120
124
  static bool has_fatal_error_;
123
127
  static bool has_been_disposed_;
124
128
  // True if we are using the crankshaft optimizing compiler.
125
129
  static bool use_crankshaft_;
 
130
  // List of callbacks when a Call completes.
 
131
  static List<CallCompletedCallback>* call_completed_callbacks_;
126
132
};
127
133
 
128
134