Package erjang

Examples of erjang.NIF


  public static EObject load_nif(EObject path, EObject info)
  {
    EString str = path.testString();
    if (str == null) { throw ERT.badarg(path, info); }
   
    NIF nif = NIF.load(str.stringValue() + ".so", info);
    if (nif == null) {
      return new ETuple2(ERT.am_error,
            new ETuple2(am_load_failed, ERT.am_undefined)
          );
    } else {
View Full Code Here

TOP

Related Classes of erjang.NIF

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.