package obus

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val interface : OBus_name.interface
val m_GetCPUFreqAvailableGovernors : (unit, string list) OBus_member.Method.t
val m_GetCPUFreqConsiderNice : (unit, bool) OBus_member.Method.t
val m_GetCPUFreqGovernor : (unit, string) OBus_member.Method.t
val m_GetCPUFreqPerformance : (unit, int32) OBus_member.Method.t
val m_SetCPUFreqConsiderNice : (bool, unit) OBus_member.Method.t
val m_SetCPUFreqGovernor : (string, unit) OBus_member.Method.t
val m_SetCPUFreqPerformance : (int32, unit) OBus_member.Method.t
type 'a members = {
  1. m_GetCPUFreqAvailableGovernors : 'a OBus_object.t -> unit -> string list Lwt.t;
  2. m_GetCPUFreqConsiderNice : 'a OBus_object.t -> unit -> bool Lwt.t;
  3. m_GetCPUFreqGovernor : 'a OBus_object.t -> unit -> string Lwt.t;
  4. m_GetCPUFreqPerformance : 'a OBus_object.t -> unit -> int32 Lwt.t;
  5. m_SetCPUFreqConsiderNice : 'a OBus_object.t -> bool -> unit Lwt.t;
  6. m_SetCPUFreqGovernor : 'a OBus_object.t -> string -> unit Lwt.t;
  7. m_SetCPUFreqPerformance : 'a OBus_object.t -> int32 -> unit Lwt.t;
}
val make : 'a members -> 'a OBus_object.interface