You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ma...@apache.org on 2016/05/09 15:14:45 UTC

[02/13] incubator-mynewt-core git commit: newtmgr; add header file for package internal symbols.

newtmgr; add header file for package internal symbols.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/c1bdd9cc
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/c1bdd9cc
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/c1bdd9cc

Branch: refs/heads/develop
Commit: c1bdd9cc58559b41bc8324df0fe9cb7b7642f75a
Parents: f2451d4
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Mon Apr 25 14:52:52 2016 -0700
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Mon May 9 08:02:45 2016 -0700

----------------------------------------------------------------------
 libs/newtmgr/src/newtmgr_priv.h | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/c1bdd9cc/libs/newtmgr/src/newtmgr_priv.h
----------------------------------------------------------------------
diff --git a/libs/newtmgr/src/newtmgr_priv.h b/libs/newtmgr/src/newtmgr_priv.h
new file mode 100644
index 0000000..7afa7f5
--- /dev/null
+++ b/libs/newtmgr/src/newtmgr_priv.h
@@ -0,0 +1,31 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+#ifndef __NETMGR_PRIV_H_
+#define __NETMGR_PRIV_H_
+
+extern struct os_eventq g_nmgr_evq;
+
+int nmgr_def_taskstat_read(struct nmgr_jbuf *);
+int nmgr_def_mpstat_read(struct nmgr_jbuf *);
+int nmgr_def_logs_read(struct nmgr_jbuf *);
+int nmgr_datetime_get(struct nmgr_jbuf *);
+int nmgr_datetime_set(struct nmgr_jbuf *);
+int nmgr_reset(struct nmgr_jbuf *);
+
+#endif