follow up

2018-03-04 Thread Anna Kucirkova
Hey there,

Just a quick follow up in case you’ve missed my email. If you’re short on time 
right now — no worries. I won’t bug you about it again. 

Thank you,

Anna.


On Tue, Feb 27, 2018 at 7:17 PM, Anna Kucirkova 
 wrote:

Hello there,

On http://feedjunkie.com/item/26303005/Heres how technology is shaping the 
future of education you are linking to a post about future of education. I'd 
like to ask if an article I recently published which is about some of these 
issues would be of any use to you?. 

You can see all the takeaways right here: 

https://www.cornerstone.edu/blogs/lifelong-learning-matters/post/five-issues-facing-higher-education-in-2018

If you are interested in that or republishing please go ahead and let me know, 
I'll send you a copy of the draft if you like. If you prefer to mention my 
article on that page that would be fine as well.  I hope you enjoy.

Thank you,

Anna.



Re: Is the data on stats page global across all processes?

2018-03-04 Thread Georg Faerber
Hi,

On 18-03-05 09:42:56, flamese...@yahoo.co.jp wrote:
> Or only the data of the process to which the stat is bind to?

AFAIK, that is correct.

Cheers,
Georg


signature.asc
Description: Digital signature


Segmentation fault by ebtree.h

2018-03-04 Thread aogooc xu
thanks, I'm system version is centos 6.5.

[root@localhost ~]# /usr/local/haproxy/sbin/haproxy -vv

HA-Proxy version 1.6.13 2017/06/18

Copyright 2000-2017 Willy Tarreau 


Build options :

  TARGET  = linux26

  CPU = generic

  CC  = gcc

  CFLAGS  = -O2 -g -fno-strict-aliasing -Wdeclaration-after-statement
-fwrapv

  OPTIONS = USE_ZLIB=1 USE_DL=1 USE_OPENSSL=1 USE_LUA=1



*use gdb:*

Program terminated with signal 11, Segmentation fault.

#0  eb_next () at ebtree/ebtree.h:574

574 t = (eb_untag(t, EB_LEFT))->b[EB_RGHT];



(gdb) bt full

#0  eb_next () at ebtree/ebtree.h:574

t = 0x0

#1  eb32_next () at ebtree/eb32tree.h:68

No locals.

#2  process_runnable_tasks () at src/task.c:229

t = 

max_processed = 

#3  0x00415198 in run_poll_loop () at src/haproxy.c:1601

next = 

#4  0x00418146 in main (argc=,

argv=) at src/haproxy.c:1975

err = 

retry = 

limit = {rlim_cur = 20194, rlim_max = 20194}

errmsg =
"\000\000\000\000\000\000\000\000\070\351q\000\000\000\000\000\360\235\226{\377\177\000\000,\351q\000\000\000\000\000\b\000\000\000\000\000\000\000(\237\226{\377\177\000\000p\237\226{\377\177\000\000\310,B\000\000\000\000\000z\024I\000\000\000\000\000ַM\000\000\000\000\000\240\236\226{\377\177\000\000
\267M\000\000\000\000\000\000\000\000"

pidfd = 


Recently, such problems often appear, so I am puzzled.


[PATCH] BUILD/SMALL Fixed build on macOS with lua

2018-03-04 Thread Kirill A. Korinsky
Last macOS has renamed flag --export-dynamic to -export_dynamic, just fixed it
---
 Makefile | 4 
 1 file changed, 4 insertions(+)

diff --git a/Makefile b/Makefile
index 2acf5028..914e3d19 100644
--- a/Makefile
+++ b/Makefile
@@ -630,7 +630,11 @@ check_lua_inc = $(shell if [ -d $(2)$(1) ]; then echo 
$(2)$(1); fi;)
 
 BUILD_OPTIONS   += $(call ignore_implicit,USE_LUA)
 OPTIONS_CFLAGS  += -DUSE_LUA $(if $(LUA_INC),-I$(LUA_INC))
+ifeq ($(shell uname), Darwin)
+LUA_LD_FLAGS := -Wl,-export_dynamic $(if $(LUA_LIB),-L$(LUA_LIB))
+else
 LUA_LD_FLAGS := -Wl,--export-dynamic $(if $(LUA_LIB),-L$(LUA_LIB))
+endif
 ifeq ($(LUA_LIB_NAME),)
 # Try to automatically detect the Lua library
 LUA_LIB_NAME := $(firstword $(foreach lib,lua5.3 lua53 lua,$(call 
check_lua_lib,$(lib),$(LUA_LD_FLAGS
-- 
2.16.1